2025-08-20 23:05:33 -05:00

15 lines
260 B
C#

using UnityEngine;
using UnityEngine.InputSystem;
namespace Player
{
[RequireComponent(typeof(PlayerInput))]
public class Player : MonoBehaviour
{
private void Awake()
{
DontDestroyOnLoad(gameObject);
}
}
}