DarkflameServer/dCommon/dEnums/eSkillBar.h
wincent 5973430720 Grim LU
Wincent's attempt at making LU into something it isn't supposed to be, an ARPG.
2023-07-15 10:54:41 +02:00

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__