using System.Collections; using System.Collections.Generic; using UnityEngine; public class Player : MonoBehaviour { [SerializeField] private PlayerMovement movement; public PlayerMovement Movement => movement; public bool IsMine => true; }