mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 14:37:25 +00:00
5973430720
Wincent's attempt at making LU into something it isn't supposed to be, an ARPG.
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__
|