mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 21:50:53 +01:00
14 lines
254 B
C
14 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;
|
|
};
|