mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 03:54:34 -04:00
3208966e2f
git-svn-id: svn://localhost@976 8062f311-0dae-4547-b526-b8ab9ac864a5
14 lines
269 B
C++
14 lines
269 B
C++
#include <wx/log.h>
|
|
|
|
#include "DndTextObjectsEditor.h"
|
|
#include "EditorObjectList.h"
|
|
|
|
/**
|
|
* Handle text dropped to the editor : Do nothing for now
|
|
*/
|
|
bool DndTextObjectsEditor::OnDropText(wxCoord x, wxCoord y, const wxString& text)
|
|
{
|
|
return true;
|
|
}
|
|
|