mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-04 09:44:10 +00:00
Move enums to a single directory
A technical change to move all emum files to a single directory
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
/*
|
||||
* Collision Groups
|
||||
*/
|
||||
|
||||
enum eCollisionGroup : uint8_t
|
||||
{
|
||||
COLLISION_GROUP_ALL = 0 << 0,
|
||||
COLLISION_GROUP_NEUTRAL = 1 << 0,
|
||||
COLLISION_GROUP_FRIENDLY = 1 << 1,
|
||||
COLLISION_GROUP_ENEMY = 1 << 2,
|
||||
COLLISION_GROUP_DYNAMIC = 1 << 3,
|
||||
};
|
@@ -1,7 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
enum class dpShapeType : unsigned short {
|
||||
Invalid = 0,
|
||||
Sphere,
|
||||
Box
|
||||
};
|
Reference in New Issue
Block a user