mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 20:28:21 +00:00
12 lines
327 B
C
12 lines
327 B
C
|
#ifndef __NTNAOMIBREADCRUMBSERVER__H__
|
||
|
#define __NTNAOMIBREADCRUMBSERVER__H__
|
||
|
|
||
|
#include "CppScripts.h"
|
||
|
|
||
|
class NtNaomiBreadcrumbServer : public CppScripts::Script {
|
||
|
public:
|
||
|
void OnMissionDialogueOK(Entity* self, Entity* target, int missionID, eMissionState missionState) override;
|
||
|
};
|
||
|
|
||
|
#endif //!__NTNAOMIBREADCRUMBSERVER__H__
|