예제 #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;
            }
        }