Add player and sprite placeholders

This commit is contained in:
2020-01-31 19:26:52 -05:00
parent 60baba6bf3
commit 137d74733b
17 changed files with 1692 additions and 206 deletions

19
Assets/Scripts/Player.cs Normal file
View File

@@ -0,0 +1,19 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehaviour
{
private void Start()
{
}
private void Update()
{
}
}