import { Entities } from 'agentscape' import { CellGrid } from 'agentscape/structures' import Cell from './Cell' export default class Agent extends Entities.Agent { act(grid: CellGrid) { this.move(grid) } }