mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 20:28:21 +00:00
9655f0ee45
fix compile issues
12 lines
292 B
C++
12 lines
292 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
|