BAStation.cs 269 B

123456789101112131415161718
  1. using UnityEngine;
  2. using System.Collections;
  3. public class BAStation
  4. {
  5. public int id;
  6. public int crystalId;
  7. public int teamId = -1;
  8. public BAStation(int id, int crystalId, int teamId)
  9. {
  10. this.id = id;
  11. this.crystalId = crystalId;
  12. this.teamId = teamId;
  13. }
  14. }