You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System.Collections; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
|
|
public enum Role |
|
{ |
|
None = -1, |
|
总队指挥中心 = 0, |
|
支队指挥中心 = 1, |
|
导调组 = 2, |
|
观察团 = 3, |
|
总队指挥 = 4, |
|
支队指挥 = 5, |
|
大队指挥 = 6, |
|
中队指挥 = 7, |
|
战斗班长 = 8, |
|
参谋 = 9 |
|
}
|
|
|