DragonNest/Client/EtCutSceneTool/cwxTLObjectSelectEvent.cpp
2024-12-20 16:56:44 +08:00

23 lines
No EOL
1.2 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include "stdafx.h"
#include <wx/wx.h>
#include "cwxTLObjectSelectEvent.h"
DEFINE_EVENT_TYPE( wxEVT_TIMELINE_OBJECT_SELECT )
cwxTLObjectSelectEvent::cwxTLObjectSelectEvent( wxEventType commandType, int id, wxString Name,
int iObjectID, int iUseType, float fStartTime ) : wxNotifyEvent( commandType, id ),
m_strName( Name ), m_iObjectID( iObjectID ), m_iUseType( iUseType ), m_fStartTime( fStartTime )
{
}
cwxTLObjectSelectEvent::~cwxTLObjectSelectEvent(void)
{
}
wxEvent* cwxTLObjectSelectEvent::Clone( void ) const
{
return new cwxTLObjectSelectEvent( *this );
}