mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-06-11 04:35:39 +00:00
16 lines
301 B
C++
16 lines
301 B
C++
// Darkflame Universe
|
|
// Copyright 2025
|
|
|
|
#ifndef NSWINTERRACESERVER_H
|
|
#define NSWINTERRACESERVER_H
|
|
|
|
#include "CppScripts.h"
|
|
#include "RaceImaginationServer.h"
|
|
|
|
class NsWinterRaceServer : public RaceImaginationServer {
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
};
|
|
|
|
#endif //!NSWINTERRACESERVER_H
|