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