5Y5T3M/Assets/Scripts/Player.cs

18 lines
302 B
C#

using UnityEngine;
public class Player : MonoBehaviour
{
public float units;
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}