Initial NPC script and gating

- TEMP: Adds guilds gating.
- FV Guild Master script added which will toggle the guild UI.
This commit is contained in:
Neal Spellman
2022-12-19 17:51:49 -05:00
parent 2fdcf62ec6
commit 192948a87f
6 changed files with 35 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
#pragma once
#include "CppScripts.h"
class FvGuildCreate : public CppScripts::Script {
public:
void OnUse(Entity* self, Entity* user) override;
};