mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +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:
parent
36eecd693d
commit
e2616c5f11
@ -155,6 +155,8 @@ endforeach()
|
|||||||
# Create our list of include directories
|
# Create our list of include directories
|
||||||
set(INCLUDED_DIRECTORIES
|
set(INCLUDED_DIRECTORIES
|
||||||
"dCommon"
|
"dCommon"
|
||||||
|
"dCommon/dClient"
|
||||||
|
"dCommon/dEnums"
|
||||||
"dChatFilter"
|
"dChatFilter"
|
||||||
"dGame"
|
"dGame"
|
||||||
"dGame/dBehaviors"
|
"dGame/dBehaviors"
|
||||||
@ -165,7 +167,6 @@ set(INCLUDED_DIRECTORIES
|
|||||||
"dGame/dEntity"
|
"dGame/dEntity"
|
||||||
"dGame/dPropertyBehaviors"
|
"dGame/dPropertyBehaviors"
|
||||||
"dGame/dUtilities"
|
"dGame/dUtilities"
|
||||||
"dCommon/dClient"
|
|
||||||
"dPhysics"
|
"dPhysics"
|
||||||
"dNavigation"
|
"dNavigation"
|
||||||
"dNavigation/dTerrain"
|
"dNavigation/dTerrain"
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#ifndef __DCOMMONVARS__H__
|
||||||
|
#define __DCOMMONVARS__H__
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <set>
|
#include <set>
|
||||||
@ -648,3 +651,5 @@ inline T const& clamp(const T& val, const T& low, const T& high) {
|
|||||||
|
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif //!__DCOMMONVARS__H__
|
Loading…
Reference in New Issue
Block a user