mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
13 lines
248 B
C++
13 lines
248 B
C++
#include "GDCore/Tools/Log.h"
|
|
|
|
#include "DndTextObjectsEditor.h"
|
|
|
|
/**
|
|
* Handle text dropped to the editor : Do nothing for now
|
|
*/
|
|
bool DndTextObjectsEditor::OnDropText(wxCoord x, wxCoord y, const wxString& text)
|
|
{
|
|
return true;
|
|
}
|
|
|