the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 11 lines 359 B view raw
1#pragma once 2#include "Culler.h" 3 4class AllowAllCuller 5{ 6public: 7 virtual bool isVisible(AABB *bb); 8 virtual bool cubeInFrustum(double x0, double y0, double z0, double x1, double y1, double z1); 9 virtual bool cubeFullyInFrustum(double x0, double y0, double z0, double x1, double y1, double z1); 10 virtual void prepare(double xOff, double yOff, double zOff); 11};