コード例 #1
0
ファイル: Objects.cs プロジェクト: PlatonCraft/FSM
 public Logic(Robot rob)
 {
     this.rob = rob;
     actArr = new Action[] { Robot.up, Robot.right, Robot.down, Robot.left };
 }
コード例 #2
0
ファイル: FSMForm.cs プロジェクト: PlatonCraft/FSM
 public static void InitObjects()
 {
     curRob = new Robot("Savvy", 0, "Pink");
     Interface.RefreshPlane();
 }