mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 22:50:54 +01:00
16 lines
302 B
C
16 lines
302 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
struct hkEventContext;
|
||
|
|
|
||
|
|
struct hkbGenerator
|
||
|
|
{
|
||
|
|
virtual ~hkbGenerator();
|
||
|
|
|
||
|
|
virtual void sub_01();
|
||
|
|
virtual void sub_02();
|
||
|
|
virtual void sub_03();
|
||
|
|
virtual void sub_04();
|
||
|
|
virtual void sub_05();
|
||
|
|
virtual void SendEvent(hkEventContext& aContext, hkEventType& aType);
|
||
|
|
};
|