Initial Checkin of Code

This commit is contained in:
Mario Steele 2025-04-11 13:35:55 -05:00
parent 19b557ee9b
commit 0bee2ee47b
44 changed files with 7965 additions and 0 deletions

26
Library/Support/Enums.cs Normal file
View file

@ -0,0 +1,26 @@
namespace PokemonLike.Library.Support;
public enum LogLevel
{
None,
Error,
Info,
Warn,
Debug,
}
public enum ECharacterAnimation
{
IdleDown,
IdleUp,
IdleLeft,
IdleRight,
TurnDown,
TurnUp,
TurnLeft,
TurnRight,
WalkDown,
WalkUp,
WalkLeft,
WalkRight,
}