diff options
Diffstat (limited to 'Minecraft.Client/AllowAllCuller.h')
| -rw-r--r-- | Minecraft.Client/AllowAllCuller.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Minecraft.Client/AllowAllCuller.h b/Minecraft.Client/AllowAllCuller.h new file mode 100644 index 00000000..5b866049 --- /dev/null +++ b/Minecraft.Client/AllowAllCuller.h @@ -0,0 +1,11 @@ +#pragma once +#include "Culler.h" + +class AllowAllCuller +{ +public: + virtual bool isVisible(AABB *bb); + virtual bool cubeInFrustum(double x0, double y0, double z0, double x1, double y1, double z1); + virtual bool cubeFullyInFrustum(double x0, double y0, double z0, double x1, double y1, double z1); + virtual void prepare(double xOff, double yOff, double zOff); +};
\ No newline at end of file |
