using UnityEditor; using UnityEngine; /// /// Defines a players unique identifiers, the controls he uses /// and which ship he steers. /// public class Player : ScriptableObject { public GUID PlayerID { get; private set; } public int playerNumber; public string playerName = "default"; public ShipProperties character; public GameObject spawnedCharacter; void Awake() { PlayerID = GUID.Generate(); } }