mirror of
https://github.com/MonsterDruide1/OdysseyDecomp
synced 2026-04-29 20:14:41 +00:00
12 lines
183 B
C++
12 lines
183 B
C++
#pragma once
|
|
|
|
namespace al {
|
|
class EventFlowEventData;
|
|
|
|
class IEventFlowEventReceiver {
|
|
public:
|
|
virtual bool receiveEvent(const EventFlowEventData* event);
|
|
};
|
|
|
|
} // namespace al
|