mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-08 16:33:41 -06:00
* 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__
|