DarkflameServer/dGame/dPropertyBehaviors/ControlBehaviorMessages/RenameMessage.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
406 B
C
Raw Normal View History

#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__