Created a FileDropped event for when a file is dropped onto the client by the OS

This commit is contained in:
2015-12-17 13:26:12 +01:00
parent 8000654005
commit c1b9404e52
3 changed files with 37 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef EFileDropped_h__
#define EFileDropped_h__
#include "EventBroker.h"
namespace Events
{
struct FileDropped : Event
{
std::string Path;
};
}
#endif