14 lines
289 B
C#
14 lines
289 B
C#
namespace Scampz.GameJam.Assets.Scripts
|
|
{
|
|
public static class InputOptions
|
|
{
|
|
public static string Vertical => "Vertical";
|
|
|
|
public static string Horizontal => "Horizontal";
|
|
|
|
public static string Interact => "Interact";
|
|
|
|
public static string Cancel => "Cancel";
|
|
}
|
|
}
|