AL-2020/frontend/js/main.js

28 lines
217 B
JavaScript

import * as Board from './Board.js'
import Agent from './Agent.js'
let board = Board.createBoard(10,10);
Board.showBoard(board);
let agent = new Agent(0,0, 'Right');
agent.showAgent();