mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
10 lines
176 B
C++
Executable File
10 lines
176 B
C++
Executable File
#include "../client.h"
|
|
#include "door_manipulation.h"
|
|
#include "../doors.h"
|
|
|
|
void command_door(Client *c, const Seperator *sep)
|
|
{
|
|
DoorManipulation::CommandHandler(c, sep);
|
|
}
|
|
|