Move enums to a single directory

A technical change to move all emum files to a single directory
This commit is contained in:
David Markowitz 2022-11-26 14:22:00 -08:00 committed by GitHub
parent 36eecd693d
commit e2616c5f11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 7 additions and 1 deletions

View File

@ -155,6 +155,8 @@ endforeach()
# Create our list of include directories
set(INCLUDED_DIRECTORIES
"dCommon"
"dCommon/dClient"
"dCommon/dEnums"
"dChatFilter"
"dGame"
"dGame/dBehaviors"
@ -165,7 +167,6 @@ set(INCLUDED_DIRECTORIES
"dGame/dEntity"
"dGame/dPropertyBehaviors"
"dGame/dUtilities"
"dCommon/dClient"
"dPhysics"
"dNavigation"
"dNavigation/dTerrain"

View File

@ -1,5 +1,8 @@
#pragma once
#ifndef __DCOMMONVARS__H__
#define __DCOMMONVARS__H__
#include <cstdint>
#include <string>
#include <set>
@ -648,3 +651,5 @@ inline T const& clamp(const T& val, const T& low, const T& high) {
return val;
}
#endif //!__DCOMMONVARS__H__