22 lines
665 B
C#
22 lines
665 B
C#
namespace DungeonRPG.Scripts.General;
|
|
|
|
public partial class GameConstants
|
|
{
|
|
//Animations
|
|
public const string ANIM_IDLE = "Idle";
|
|
public const string ANIM_MOVE = "Move";
|
|
public const string ANIM_DASH = "Dash";
|
|
|
|
//Inputs
|
|
public const string INPUT_MOVE_LEFT = "MoveLeft";
|
|
public const string INPUT_MOVE_RIGHT = "MoveRight";
|
|
public const string INPUT_MOVE_FORWARD = "MoveForward";
|
|
public const string INPUT_MOVE_BACKWARD = "MoveBackward";
|
|
public const string INPUT_DASH = "Dash";
|
|
|
|
//Notification IDs
|
|
public const int STATE_NOTIFICATION_ENABLE = 5001;
|
|
public const int STATE_NOTIFICATION_DISABLE = 5002;
|
|
}
|
|
|