the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#include "stdafx.h"
2#include "AllowAllCuller.h"
3
4bool AllowAllCuller::isVisible(AABB *bb)
5{
6 return true;
7}
8
9bool AllowAllCuller::cubeInFrustum(double x0, double y0, double z0, double x1, double y1, double z1)
10{
11 return true;
12}
13
14bool AllowAllCuller::cubeFullyInFrustum(double x0, double y0, double z0, double x1, double y1, double z1)
15{
16 return true;
17}
18
19void AllowAllCuller::prepare(double xOff, double yOff, double zOff)
20{
21}