mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-15 04:38:21 +00:00
c1e8546d48
add final missing scripts for nt also fix the turnin for the breadcrumb missions not showing the completion window. Fix another missing script Add another script fix include guards Fix dirt clouds not appearing on mission accept
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__
|