using UnityEngine; /// /// Defines a players unique identifiers, the controls he uses /// and which ship he steers. /// public class Player : ScriptableObject { public int playerNumber; public string playerName = "default"; public ShipProperties character; public GameObject spawnedCharacter; }