mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
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__
|