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