mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-27 12:27:17 +00:00
[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
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user