mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-01-10 14:57:06 +00:00
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
|