Files
WhiteMan_Unity2D/Assets/02_Scripts/Player/PlayerController.cs
2026-05-14 16:01:30 +09:00

17 lines
287 B
C#

using UnityEngine;
public class PlayerController : MonoBehaviour
{
// 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()
{
}
}