mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 20:28:21 +00:00
9655f0ee45
fix compile issues
16 lines
488 B
C++
16 lines
488 B
C++
#ifndef VISTOGGLENOTIFIERSERVER_H
|
|
#define VISTOGGLENOTIFIERSERVER_H
|
|
|
|
#include "CppScripts.h"
|
|
|
|
class VisToggleNotifierServer : public CppScripts::Script {
|
|
public:
|
|
void OnMissionDialogueOK(Entity* self, Entity* target, int missionID, eMissionState missionState) override;
|
|
protected:
|
|
void SetGameVariables(std::map<int32_t, std::string>& gameVariables) { m_GameVariables = gameVariables; }
|
|
private:
|
|
std::map<int32_t, std::string> m_GameVariables;
|
|
};
|
|
|
|
#endif //!VISTOGGLENOTIFIERSERVER_H
|