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
17 lines
389 B
C++
17 lines
389 B
C++
#ifndef __ADDMESSAGE__H__
|
|
#define __ADDMESSAGE__H__
|
|
|
|
#include "BehaviorMessageBase.h"
|
|
|
|
class AddMessage : public BehaviorMessageBase {
|
|
public:
|
|
AddMessage(AMFArrayValue* arguments);
|
|
const uint32_t GetBehaviorIndex() { return behaviorIndex; };
|
|
const uint32_t GetBehaviorId() { return behaviorId; };
|
|
private:
|
|
uint32_t behaviorId;
|
|
uint32_t behaviorIndex;
|
|
};
|
|
|
|
#endif //!__ADDMESSAGE__H__
|