5Y5T3M/Assets/Scripts/Player.cs

19 lines
302 B
C#
Raw Normal View History

2025-09-17 10:12:15 +02:00
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()
{
}
}