mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
32 lines
705 B
C++
32 lines
705 B
C++
#pragma once
|
|
|
|
#include <Geode/loader/Event.hpp>
|
|
|
|
using namespace geode::prelude;
|
|
|
|
#ifdef GEODE_IS_WINDOWS
|
|
#ifdef EXPORTING_MOD
|
|
#define GEODE_TESTDEP_DLL __declspec(dllexport)
|
|
#else
|
|
#define GEODE_TESTDEP_DLL __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
#define GEODE_TESTDEP_DLL
|
|
#endif
|
|
|
|
class GEODE_TESTDEP_DLL TestEvent : public Event {
|
|
protected:
|
|
std::string data;
|
|
|
|
public:
|
|
std::string getData() const;
|
|
TestEvent(std::string const& data);
|
|
};
|
|
|
|
class GEODE_TESTDEP_DLL TestEventFilter : public EventFilter<TestEvent> {
|
|
public:
|
|
using Callback = void(TestEvent*);
|
|
|
|
ListenerResult handle(utils::MiniFunction<Callback> fn, TestEvent* event);
|
|
TestEventFilter();
|
|
};
|