mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-23 07:40:14 +00:00
Fix Windows frustum enum macro collision
This commit is contained in:
parent
1c7b87ee78
commit
e916ef9bda
2 changed files with 36 additions and 36 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue