12 2015 档案

摘要:using System; enum Move { walk, run } class Program { static float[] speedAry = { 50.0f, 200.0f }; public static Move move = ... 阅读全文
posted @ 2015-12-12 14:58 盘子脸 阅读(1211) 评论(0) 推荐(0)
摘要:using System; namespace StateMachine2.State { public enum AnimationState { Walk = 1, Dead, } public abstract class State { abstract public int GetState... 阅读全文
posted @ 2015-12-04 11:00 盘子脸 阅读(13290) 评论(1) 推荐(0)
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StateMachine { class Program { static void Main(string... 阅读全文
posted @ 2015-12-04 10:06 盘子脸 阅读(1899) 评论(0) 推荐(0)