mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-05 16:32:26 -06:00
* Breakout rest of the enums from dcommonvars so we don't have to deal with merge conflicts ePlayerFlags is not a scoped enum, yet, due to it's complexity * address feedback * make player flag types consistent * fix typo
13 lines
174 B
C++
13 lines
174 B
C++
#ifndef __EBUILDTYPE__H__
|
|
#define __EBUILDTYPE__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eBuildType :uint32_t {
|
|
NOWHERE,
|
|
IN_WORLD,
|
|
ON_PROPERTY
|
|
};
|
|
|
|
#endif //!__EBUILDTYPE__H__
|