mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
* [Commands] Cleanup #object Command # Notes - Cleanup messages and logic. - Introduce enum for object types. - Set ground work for object manipulation similar to door manipulation. * Update object_manipulation.cpp * Final push * Update client_packet.cpp * Update object_manipulation.cpp * Update object_manipulation.cpp * Update object.h * Update client_packet.cpp * Update client_packet.cpp * Push. * Update version.h * Update database_update_manifest.cpp * Update zone.cpp
16 lines
317 B
C++
16 lines
317 B
C++
#ifndef EQEMU_OBJECT_MANIPULATION_H
|
|
#define EQEMU_OBJECT_MANIPULATION_H
|
|
|
|
#include "../client.h"
|
|
|
|
class ObjectManipulation {
|
|
|
|
public:
|
|
static void CommandHandler(Client *c, const Seperator *sep);
|
|
static void CommandHeader(Client *c);
|
|
static void SendSubcommands(Client *c);
|
|
};
|
|
|
|
|
|
#endif //EQEMU_OBJECT_MANIPULATION_H
|