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