aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/AllowAllCuller.cpp
blob: 7627af3b7e0c4c45fa32dcd0235eff46a3131d93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "stdafx.h"
#include "AllowAllCuller.h"	

bool AllowAllCuller::isVisible(AABB *bb)
{
	return true;
}

bool AllowAllCuller::cubeInFrustum(double x0, double y0, double z0, double x1, double y1, double z1)
{
	return true;
}

bool AllowAllCuller::cubeFullyInFrustum(double x0, double y0, double z0, double x1, double y1, double z1)
{
	return true;
}

void AllowAllCuller::prepare(double xOff, double yOff, double zOff)
{
}