mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-01-10 14:57:06 +00:00
2560bb00da
* brother * use some better logic * Implement spider boss msg script tested that the message now shows up when hitting the survival spider entrance area * add drag to start race feature * ignore 3 more scripts * add Ns race server script * remove logs * unique * Update RaceImaginationServer.cpp * Update CppScripts.cpp
13 lines
237 B
C++
13 lines
237 B
C++
#ifndef NSRACESERVER_H
|
|
#define NSRACESERVER_H
|
|
|
|
#include "CppScripts.h"
|
|
#include "RaceImaginationServer.h"
|
|
|
|
class NsRaceServer : public RaceImaginationServer {
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
};
|
|
|
|
#endif //!NSRACESERVER_H
|