DragonNest/Client/EtCutSceneTool/cwxTLObjectMoveEvent.cpp

23 lines
556 B
C++
Raw Normal View History

2024-12-19 09:48:26 +08:00
#include "stdafx.h"
#include <wx/wx.h>
#include "cwxTLObjectMoveEvent.h"
DEFINE_EVENT_TYPE( wxEVT_TIMELINE_OBJECT_MOVE )
cwxTLObjectMoveEvent::cwxTLObjectMoveEvent( wxEventType commandType, int id, wxString& strName, int iObjectID, float fStartTime ) : wxNotifyEvent( commandType, id ),
m_strName( strName ), m_iObjectID( iObjectID ), m_fStartTime( fStartTime )
{
}
cwxTLObjectMoveEvent::~cwxTLObjectMoveEvent(void)
{
}
wxEvent* cwxTLObjectMoveEvent::Clone( void ) const
{
return new cwxTLObjectMoveEvent( *this );
}