diff --git a/src/renderer/frustrum.hpp b/src/renderer/frustrum.hpp index 1fba4b0..cefa7e6 100644 --- a/src/renderer/frustrum.hpp +++ b/src/renderer/frustrum.hpp @@ -1,7 +1,35 @@ #ifndef MINECRAFT_RENDERER_FRUSTRUM_H_ #define MINECRAFT_RENDERER_FRUSTRUM_H_ +#include "../common.hpp" + +namespace EFrustrumPlanes { + + enum Planes { + + Right, + Left, + Top, + Bottom, + Far, + Near + + }; + +}; + +class FrustrumPlane { +public: +}; + +class Frustrum { +public: + + + +}; + #endif