コード例 #1
0
ファイル: Jugador.cs プロジェクト: tronxi/Laberinto
        public Jugador()
        {
            tablero = Tablero.GetTablero();
            tablero.SetPos(tablero.GetPosX(), tablero.GetPosY(), JUGADOR);
            posActual = 2;

            nuevaX = tablero.GetPosX();
            nuevaY = tablero.GetPosY();
        }
コード例 #2
0
 public ControladorIA()
 {
     jugador = new Jugador();
     tablero = Tablero.GetTablero();
 }