Files
axyz/include/Engine/Core/EFileDropped.h
T

16 lines
161 B
C++

#ifndef EFileDropped_h__
#define EFileDropped_h__
#include "EventBroker.h"
namespace Events
{
struct FileDropped : Event
{
std::string Path;
};
}
#endif