eqemu-server/zone/gm_commands/door_manipulation.h
Chris Miles 94c1a50cc8
[GM Command] Door Manipulation Command Port (#1524)
* Initial commit

* Push latest

* Update door_manipulation.cpp

* More door work

* More doors work

* Upload notes

* Finalize changes

* Remove comment

* Add missing chat line

* Swapped URI parser with something not using deprecated C++ functions
2021-09-12 22:08:04 -05:00

24 lines
597 B
C++

#ifndef EQEMU_DOOR_MANIPULATION_H
#define EQEMU_DOOR_MANIPULATION_H
#include "../client.h"
#include "../../common/repositories/tool_game_objects_repository.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
);
};
#endif //EQEMU_DOOR_MANIPULATION_H