mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 11:55:28 -04:00
31d9147350
git-svn-id: svn://localhost@1246 8062f311-0dae-4547-b526-b8ab9ac864a5
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;
|
|
}
|
|
|