mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
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
252 B
C++
12 lines
252 B
C++
#ifndef __NTNAOMIDIRTSERVER__H__
|
|
#define __NTNAOMIDIRTSERVER__H__
|
|
|
|
#include "VisToggleNotifierServer.h"
|
|
|
|
class NTNaomiDirtServer : public VisToggleNotifierServer {
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
};
|
|
|
|
#endif //!__NTNAOMIDIRTSERVER__H__
|