Ejemplo n.º 1
0
		private static State StartGame()
		{
			State ret = new State();
			ret.AddAllowedAction("start game");
			Transition t = new Transition(BeginTurn());
			t.AddRequiredAction("start game");
			return ret;
		}
Ejemplo n.º 2
0
		public Transition(State next)
		{
			this.next = next;
		}
Ejemplo n.º 3
0
		private static State BeginTurn()
		{
			State ret = new State();

			return ret;
		}