mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-13 19:58:21 +00:00
9655f0ee45
fix compile issues
12 lines
149 B
C++
12 lines
149 B
C++
#ifndef EENDBEHAVIOR_H
|
|
#define EENDBEHAVIOR_H
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eEndBehavior : uint32_t {
|
|
RETURN,
|
|
WAIT
|
|
};
|
|
|
|
#endif //!EENDBEHAVIOR_H
|