- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class TowerMap : MonoBehaviour
- {
- static public List<GameObject> myTowers = new List<GameObject>();
- static public List<GameObject> enemyTowers = new List<GameObject>();
- }
|