1
0
forked from noxious/server

Renamed zone > map

This commit is contained in:
2025-01-02 17:31:24 +01:00
parent 887da447e0
commit 11041fec83
54 changed files with 871 additions and 895 deletions

12
src/commands/listMaps.ts Normal file
View File

@ -0,0 +1,12 @@
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())
}
}