123456789101112131415161718 |
- using UnityEngine;
- using System.Collections;
- public class BAStation
- {
- public int id;
- public int crystalId;
- public int teamId = -1;
- public BAStation(int id, int crystalId, int teamId)
- {
- this.id = id;
- this.crystalId = crystalId;
- this.teamId = teamId;
- }
- }
|