From dc8d6c2741a89dec32bdce53377b5bc16202d8af Mon Sep 17 00:00:00 2001 From: Ben Kyd Date: Thu, 7 Nov 2019 19:49:39 +0000 Subject: [PATCH] switching computers --- src/renderer/frustrum.hpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) 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