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