DarkflameServer/dGame/dPropertyBehaviors/ControlBehaviorMessages/RearrangeStripMessage.h

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

24 lines
659 B
C
Raw Normal View History

#ifndef __REARRANGESTRIPMESSAGE__H__
#define __REARRANGESTRIPMESSAGE__H__
#include "ActionContext.h"
#include "BehaviorMessageBase.h"
/**
* @brief Sent when a player moves an Action around in the same strip
*
*/
class RearrangeStripMessage : public BehaviorMessageBase {
public:
RearrangeStripMessage(AMFArrayValue* arguments);
const uint32_t GetSrcActionIndex() { return srcActionIndex; };
const uint32_t GetDstActionIndex() { return dstActionIndex; };
ActionContext GetActionContext() { return actionContext; };
private:
ActionContext actionContext;
uint32_t srcActionIndex;
uint32_t dstActionIndex;
};
#endif //!__REARRANGESTRIPMESSAGE__H__