mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-05-15 19:11:20 +00:00
13 lines
215 B
C++
13 lines
215 B
C++
#ifndef EUSEITEMRESPONSE_H
|
|
#define EUSEITEMRESPONSE_H
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eUseItemResponse : uint32_t {
|
|
NoImaginationForPet = 1,
|
|
FailedPrecondition,
|
|
MountsNotAllowed
|
|
};
|
|
|
|
#endif //!EUSEITEMRESPONSE_H
|