#include "copium/event/DropEvent.h" namespace Copium { DropEvent::DropEvent(const std::vector& filePaths) : Event{EventType::Drop}, filePaths{filePaths} { } const std::vector& DropEvent::GetFilePaths() const { return filePaths; } }