mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-13 19:58:21 +00:00
9655f0ee45
fix compile issues
15 lines
291 B
C++
15 lines
291 B
C++
#ifndef ECHARACTERCREATIONRESPONSE_H
|
|
#define ECHARACTERCREATIONRESPONSE_H
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eCharacterCreationResponse : uint8_t {
|
|
SUCCESS = 0,
|
|
OBJECT_ID_UNAVAILABLE,
|
|
NAME_NOT_ALLOWED,
|
|
PREDEFINED_NAME_IN_USE,
|
|
CUSTOM_NAME_IN_USE
|
|
};
|
|
|
|
#endif //!ECHARACTERCREATIONRESPONSE_H
|