Files
GDevelop/IDE/DndTextObjectsEditor.cpp
T
Florian 3208966e2f Merged CoreWithImplementation ( i.e: Game Develop 3 ) branch with trunk.
git-svn-id: svn://localhost@976 8062f311-0dae-4547-b526-b8ab9ac864a5
2013-05-06 20:29:22 +00:00

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;
}