Fix Windows frustum enum macro collision

This commit is contained in:
Kelsi 2026-03-09 04:41:04 -07:00
parent 1c7b87ee78
commit e916ef9bda
2 changed files with 36 additions and 36 deletions

View file

@ -33,12 +33,12 @@ struct Plane {
class Frustum {
public:
enum Side {
LEFT = 0,
RIGHT,
BOTTOM,
TOP,
NEAR,
FAR
PLANE_LEFT = 0,
PLANE_RIGHT,
PLANE_BOTTOM,
PLANE_TOP,
PLANE_NEAR,
PLANE_FAR
};
Frustum() = default;