mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 21:30:53 +01:00
15 lines
254 B
C
15 lines
254 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Components/BaseFormComponent.h>
|
||
|
|
|
||
|
|
struct BGSKeyword;
|
||
|
|
|
||
|
|
struct BGSKeywordForm : BaseFormComponent
|
||
|
|
{
|
||
|
|
virtual bool Contains(BGSKeyword* apKeyword) const;
|
||
|
|
virtual void sub_5();
|
||
|
|
|
||
|
|
BGSKeyword** keywords;
|
||
|
|
uint32_t count;
|
||
|
|
};
|