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