mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
12 lines
164 B
C
12 lines
164 B
C
|
#ifndef __EENDBEHAVIOR__H__
|
||
|
#define __EENDBEHAVIOR__H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
enum class eEndBehavior : uint32_t {
|
||
|
RETURN,
|
||
|
WAIT
|
||
|
};
|
||
|
|
||
|
#endif //!__EENDBEHAVIOR__H__
|