namespace Game { public enum CharacterState { Free, //未知 Living, //活着 Buffing, //BUFFER中 Picking, //采集中 Dead = 4, //死亡 OutWorld, //不在世界中 } }