mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 20:10:53 +01:00
15 lines
302 B
C
15 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);
|
|
};
|