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

23 lines
No EOL
1.3 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 "cwxTLObjectResizeEvent.h"
DEFINE_EVENT_TYPE( wxEVT_TIMELINE_OBJECT_RESIZE )
cwxTLObjectResizeEvent::cwxTLObjectResizeEvent( wxEventType commandType, int id, wxString& strName, int iObjectID, float fStartTime, float fTimeLength ) : wxNotifyEvent( commandType, id ),
m_strName( strName ), m_iObjectID( iObjectID ), m_fStartTime( fStartTime ), m_fTimeLength( fTimeLength )
{
}
cwxTLObjectResizeEvent::~cwxTLObjectResizeEvent(void)
{
}
wxEvent* cwxTLObjectResizeEvent::Clone( void ) const
{
return new cwxTLObjectResizeEvent( *this );
}