mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
* 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
24 lines
597 B
C++
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
|