mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2026-02-04 18:09:56 +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
|