13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
import { Server } from 'socket.io'
|
|
|
|
import { BaseCommand } from '#application/base/baseCommand'
|
|
import MapManager from '#managers/mapManager'
|
|
|
|
type CommandInput = string[]
|
|
|
|
export default class ListMapsCommand extends BaseCommand {
|
|
public execute(input: CommandInput): void {
|
|
console.log(MapManager.getLoadedMaps())
|
|
}
|
|
}
|