14 lines
429 B
C#
14 lines
429 B
C#
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";
|
|
}
|
|
}
|