forked from noxious/server
11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
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())
|
|
}
|
|
}
|