DragonNest/Client/EtCutSceneTool/ICommand.cpp

17 lines
204 B
C++
Raw Normal View History

2024-12-19 09:48:26 +08:00
#include "stdafx.h"
#include <wx/wx.h>
#include "ICommand.h"
ICommand::ICommand( ICmdReceiver* pCmdReceiver ) : m_pCmdReceiver( pCmdReceiver ), m_bIsUndo( false )
{
}
ICommand::~ICommand(void)
{
}