mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 22:47:25 +00:00
16 lines
206 B
C
16 lines
206 B
C
|
#pragma once
|
||
|
|
||
|
#ifndef __ESKILLBAR_H__
|
||
|
#define __ESKILLBAR_H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
enum class eSkillBar : int32_t {
|
||
|
Primary,
|
||
|
Gear,
|
||
|
ClassPrimary,
|
||
|
ClassSecondary,
|
||
|
Consumable
|
||
|
};
|
||
|
|
||
|
#endif // __ESKILLBAR_H__
|