mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
26f2eb409f
* Mounts -v2 * fix stun state and make comments a bit nicer * remove extra serilization * update the char position a bit more correctly * make vehicles face thr player's direction * address feedback * fix compiling for real this time * removed uneeded check
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__
|