ShatteredSword/src/shattered_sword/sword_enums.ts

13 lines
369 B
TypeScript
Raw Normal View History

2022-03-31 20:52:05 -04:00
export enum Player_Events {
PLAYER_MOVE = "PlayerMove",
PLAYER_JUMP = "PlayerJump",
PLAYER_ATTACK = "PlayerAttack",
PLAYER_DASH = "PlayerDash",
PLAYER_HEAL = "PlayerHeal",
PLAYER_KILLED = "PlayerKilled",
}
export enum Damage_Type {
NORMAL_DAMAGE = "NormalDamage",
ENVIRONMENT_DAMAGE = "EnvironmentDamage",
DOT_DAMAGE = "DOTDamage",
}