Wincent's attempt at making LU into something it isn't supposed to be, an ARPG.
This commit is contained in:
wincent
2023-07-15 10:54:41 +02:00
parent 0d6bd33f9e
commit 5973430720
54 changed files with 2634 additions and 76 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#ifndef __ESKILLBAR_H__
#define __ESKILLBAR_H__
#include <cstdint>
enum class eSkillBar : int32_t {
Primary,
Gear,
ClassPrimary,
ClassSecondary,
Consumable
};
#endif // __ESKILLBAR_H__