mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-07-07 04:00:02 +00:00
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
|