The open source repository for the action RPG game in development by Sig Productions titled 'Adventures in Lestoria'! https://forums.lestoria.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
AdventuresInLestoria/Crawler/Class.h

17 lines
247 B

#pragma once
#include "Ability.h"
#include "Animation.h"
#include "olcPixelGameEngine.h"
#undef GetClassInfo
//Classes have bit-wise operator capabilities.
enum Class{
ANY=0,
WARRIOR=1,
THIEF=2,
RANGER=4,
TRAPPER=8,
WIZARD=16,
WITCH=32
};