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
25 lines
662 B
C++
25 lines
662 B
C++
#ifndef __UPDATESTRIPUIMESSAGE__H__
|
|
#define __UPDATESTRIPUIMESSAGE__H__
|
|
|
|
#include "BehaviorMessageBase.h"
|
|
|
|
class AMFArrayValue;
|
|
|
|
class UpdateStripUiMessage : public BehaviorMessageBase {
|
|
public:
|
|
UpdateStripUiMessage(AMFArrayValue* arguments);
|
|
const double GetYPosition() { return yPosition; };
|
|
const double GetXPosition() { return xPosition; };
|
|
const StripId GetStripID() { return stripID; };
|
|
const BehaviorState GetStateID() { return stateID; };
|
|
const uint32_t GetBehaviorID() { return behaviorID; };
|
|
private:
|
|
double yPosition;
|
|
double xPosition;
|
|
StripId stripID;
|
|
BehaviorState stateID;
|
|
uint32_t behaviorID;
|
|
};
|
|
|
|
#endif //!__UPDATESTRIPUIMESSAGE__H__
|