DragonNest/Client/EtCutSceneTool/ICommand.cpp
2024-12-19 09:48:26 +08:00

16 lines
204 B
C++

#include "stdafx.h"
#include <wx/wx.h>
#include "ICommand.h"
ICommand::ICommand( ICmdReceiver* pCmdReceiver ) : m_pCmdReceiver( pCmdReceiver ), m_bIsUndo( false )
{
}
ICommand::~ICommand(void)
{
}