DRLA-RPG/ZScript/Structs.zs

20 lines
235 B
Plaintext
Raw Permalink Normal View History

2019-04-05 19:02:56 -07:00
struct RLStats
{
int Level;
int XP;
int Strength;
int Defense;
int Vitality;
int Energy;
int Regeneration;
int Agility;
int Capacity;
int Luck;
void Init()
{
Level = 1;
}
}