void Awake() { if (Instance != null) { Destroy(gameObject); return; } Instance = this; }
public void TestSetup() { game = new Game(); game.SetPlayerPosition(new Point(10, 20)); }