mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-07-02 01:29:51 +00:00
21 lines
403 B
C++
21 lines
403 B
C++
#ifndef RENAMEMESSAGE_H
|
|
#define RENAMEMESSAGE_H
|
|
|
|
#include "BehaviorMessageBase.h"
|
|
|
|
class AMFArrayValue;
|
|
|
|
/**
|
|
* @brief Sent when a player renames this behavior
|
|
*/
|
|
class RenameMessage : public BehaviorMessageBase {
|
|
public:
|
|
RenameMessage(const AMFArrayValue& arguments);
|
|
[[nodiscard]] const std::string& GetName() const { return m_Name; };
|
|
|
|
private:
|
|
std::string m_Name;
|
|
};
|
|
|
|
#endif //!RENAMEMESSAGE_H
|