示例#1
0
文件: Unit.cs 项目: Deathgar/MyWorld
        public void UseCode()
        {
            switch (Codes.Next())
            {
            case ECodes.Nothing:
                Stats.UpEnergy();
                break;

            case ECodes.Go:
                this.Go();
                Stats.DownEnergy();
                break;
            }
        }