using UnityEngine; using System.Collections; public class ServiceFlag { public int teamId = -1; public int x; public int y; public int craftId = -1; public bool inBase = true; public ServiceFlag(int teamId, int x, int y) { this.teamId = teamId; this.x = x; this.y = y; } }