removed old files

This commit is contained in:
Katboi01 2024-05-23 02:53:26 +02:00
parent d17b6f7294
commit ca5cc8f95b
2 changed files with 0 additions and 24 deletions

View File

@ -1,19 +0,0 @@
export enum BattleAction{
ChargeRight,
ChargeLeft,
MoveRight,
MoveLeft,
AttackRightHigh,
AttackRightMid,
AttackRightLow,
AttackLeftHigh,
AttackLeftMid,
AttackLeftLow,
Wait,
}
export enum CharacterState{
Idle,
Recovering,
Training,
}

View File

@ -1,5 +0,0 @@
export class responses{
static BattleNotExist = {code: 400, message: "Battle session does not exist"}
static BattleFinished = {code: 400, message: "The battle has finished"}
static BattleAlreadyStarted = {code: 400, message: "Battle has already started"}
}