mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-23 14:03:34 +00:00
15dc5feeb5
* 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
12 lines
211 B
C++
12 lines
211 B
C++
#ifndef GFRACEINSTANCER_H
|
|
#define GFRACEINSTANCER_H
|
|
|
|
#include "CppScripts.h"
|
|
|
|
class GfRaceInstancer : public CppScripts::Script {
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
};
|
|
|
|
#endif //!GFRACEINSTANCER_H
|