コード例 #1
0
ファイル: Command.cs プロジェクト: eikooc/MAS-final-project
 public Command(Direction d)
 {
     actType = Enumeration.Type.Move;
     dir1    = d;
     dir2    = null;
 }
コード例 #2
0
ファイル: Command.cs プロジェクト: eikooc/MAS-final-project
 public Command(Enumeration.Type t, Direction d1, Direction d2)
 {
     actType = t;
     dir1    = d1;
     dir2    = d2;
 }
コード例 #3
0
ファイル: Command.cs プロジェクト: eikooc/MAS-final-project
 public Command()
 {
     actType = Enumeration.Type.NoOp;
     dir1    = null;
     dir2    = null;
 }