mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
72c93c8913
Further implements the ControlBehavior processing and adds preparations for cheat detection
19 lines
406 B
C++
19 lines
406 B
C++
#ifndef __RENAMEMESSAGE__H__
|
|
#define __RENAMEMESSAGE__H__
|
|
|
|
#include "BehaviorMessageBase.h"
|
|
|
|
class AMFArrayValue;
|
|
|
|
class RenameMessage : public BehaviorMessageBase {
|
|
public:
|
|
RenameMessage(AMFArrayValue* arguments);
|
|
const uint32_t GetBehaviorID() { return behaviorID; };
|
|
const std::string& GetName() { return name; };
|
|
private:
|
|
uint32_t behaviorID;
|
|
std::string name;
|
|
};
|
|
|
|
#endif //!__RENAMEMESSAGE__H__
|