Add input controller and malon model (i think)

This commit is contained in:
2022-08-13 12:18:32 -07:00
parent 5d1c3975f6
commit 4424d1546c
3 changed files with 243 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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";
}
}