2023-02-14 02:55:44 +00:00
|
|
|
#ifndef __UPDATESTRIPUIMESSAGE__H__
|
|
|
|
#define __UPDATESTRIPUIMESSAGE__H__
|
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
#include "ActionContext.h"
|
2023-02-14 02:55:44 +00:00
|
|
|
#include "BehaviorMessageBase.h"
|
2023-02-16 17:30:33 +00:00
|
|
|
#include "StripUiPosition.h"
|
2023-02-14 02:55:44 +00:00
|
|
|
|
|
|
|
class AMFArrayValue;
|
|
|
|
|
2023-02-16 17:30:33 +00:00
|
|
|
/**
|
|
|
|
* @brief Sent when a player moves the first Action in a Strip
|
|
|
|
*
|
|
|
|
*/
|
2023-02-14 02:55:44 +00:00
|
|
|
class UpdateStripUiMessage : public BehaviorMessageBase {
|
|
|
|
public:
|
|
|
|
UpdateStripUiMessage(AMFArrayValue* arguments);
|
2023-02-16 17:30:33 +00:00
|
|
|
StripUiPosition GetPosition() { return position; };
|
|
|
|
ActionContext GetActionContext() { return actionContext; };
|
2023-02-14 02:55:44 +00:00
|
|
|
private:
|
2023-02-16 17:30:33 +00:00
|
|
|
StripUiPosition position;
|
|
|
|
ActionContext actionContext;
|
2023-02-14 02:55:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //!__UPDATESTRIPUIMESSAGE__H__
|