]> git.lizzy.rs Git - dragonblocks_alpha.git/blob - src/client/frustum.h
Rework structure
[dragonblocks_alpha.git] / src / client / frustum.h
1 #ifndef _FRUSTUM_H_
2 #define _FRUSTUM_H_
3
4 #include <stdbool.h>
5 #include <linmath.h>
6 #include "types.h"
7
8 extern mat4x4 frustum;
9
10 void frustum_update();
11 bool frustum_cull(aabb3f32 box);
12
13 #endif