OdysseyDecomp/lib/al/Library/Event/IEventFlowEventReceiver.h
2025-03-01 11:59:12 +01:00

12 lines
183 B
C++

#pragma once
namespace al {
class EventFlowEventData;
class IEventFlowEventReceiver {
public:
virtual bool receiveEvent(const EventFlowEventData* event);
};
} // namespace al