Files
SpaceGame/Assets/Scripts/Runtime/ConstantStrings.cs
2025-12-04 18:14:44 -05:00

16 lines
449 B
C#

using UnityEngine;
namespace Boxfriend
{
public class ConstantStrings
{
public const string PlayerActionMap = "Player";
public const string InteractInput = "Interact";
public const string JumpInput = "Jump";
public const string MoveInput = "Move";
public const string CrouchInput = "Crouch";
public const string SprintInput = "Sprint";
public const string LookInput = "Look";
}
}