mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-07-01 00:59:59 +00:00
11 lines
530 B
C++
11 lines
530 B
C++
#include "RearrangeStripMessage.h"
|
|
|
|
RearrangeStripMessage::RearrangeStripMessage(AMFArrayValue* arguments) : BehaviorMessageBase(arguments) {
|
|
actionContext = ActionContext(arguments);
|
|
srcActionIndex = GetActionIndexFromArgument(arguments, "srcActionIndex");
|
|
|
|
dstActionIndex = GetActionIndexFromArgument(arguments, "dstActionIndex");
|
|
|
|
LOG_DEBUG("srcactionIndex %i dstactionIndex %i stripId %i m_BehaviorId %i stateId %i", srcActionIndex, dstActionIndex, actionContext.GetStripId(), m_BehaviorId, actionContext.GetStateId());
|
|
}
|