eqemu-server/zone/gm_commands/door_manipulation.h
2025-12-26 20:58:07 -08:00

20 lines
501 B
C++

#pragma once
#include "common/repositories/tool_game_objects_repository.h"
#include "zone/client.h"
class DoorManipulation {
public:
static void CommandHandler(Client *c, const Seperator *sep);
static void CommandHeader(Client *c);
static void DisplayObjectResultToClient(
Client *c,
std::vector<ToolGameObjectsRepository::ToolGameObjects> game_objects
);
static void DisplayModelsFromFileResults(
Client *c,
std::vector<ToolGameObjectsRepository::ToolGameObjects> game_objects
);
};