mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-06 16:36:47 -06:00
15 lines
238 B
C++
15 lines
238 B
C++
#pragma once
|
|
|
|
#ifndef __EUNEQUIPPABLEACTIVETYPE__H__
|
|
#define __EUNEQUIPPABLEACTIVETYPE__H__
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eUnequippableActiveType : int32_t {
|
|
INVALID = -1,
|
|
PET = 0,
|
|
MOUNT
|
|
};
|
|
|
|
#endif //!__EUNEQUIPPABLEACTIVETYPE__H__
|