mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-01-10 06:47: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
12 lines
292 B
C++
12 lines
292 B
C++
#ifndef RACEIMAGINATIONSERVER_H
|
|
#define RACEIMAGINATIONSERVER_H
|
|
|
|
#include "CppScripts.h"
|
|
|
|
class RaceImaginationServer : public virtual CppScripts::Script {
|
|
public:
|
|
void OnZoneLoadedInfo(Entity* self, const GameMessages::ZoneLoadedInfo& info) override;
|
|
};
|
|
|
|
#endif //!RACEIMAGINATIONSERVER_H
|