mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
9 lines
302 B
C++
9 lines
302 B
C++
#include "RemoveStripMessage.h"
|
|
|
|
RemoveStripMessage::RemoveStripMessage(const AMFArrayValue& arguments)
|
|
: BehaviorMessageBase{ arguments }
|
|
, m_ActionContext{ arguments } {
|
|
|
|
LOG_DEBUG("stripId %i stateId %i behaviorId %i", m_ActionContext.GetStripId(), m_ActionContext.GetStateId(), m_BehaviorId);
|
|
}
|