fixed player bugs

This commit is contained in:
2020-02-01 21:09:12 -05:00
parent 0ff71d5942
commit 5ada160f60
4 changed files with 147 additions and 145 deletions

View File

@@ -3,10 +3,20 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace Assets.Model
{
public static class TileToKeyMappings
{
public static List<KeyCode> TileToKey = new List<KeyCode>
{
KeyCode.Q,
KeyCode.W,
KeyCode.E,
KeyCode.A,
KeyCode.S,
KeyCode.D
};
}
}