The open source repository for the action RPG game in development by Sig Productions titled 'Adventures in Lestoria'! https://forums.lestoria.net
 
 
 
 
 
 
AdventuresInLestoria/Crawler/Class.h

15 lines
226 B

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