faces and that

This commit is contained in:
Ben
2019-10-05 23:06:07 +01:00
parent 9451e02edd
commit 656f97834b
7 changed files with 152 additions and 2 deletions

View File

@@ -1,7 +1,14 @@
#ifndef MINECRAFT_WORLD_WORLD_H_
#define MINECRAFT_WORLD_WORLD_H_
#include "../common.hpp"
class Face;
class World {
public:
std::vector<std::shared_ptr<Face>> Faces;
};