mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2026-06-16 11:44:22 +00:00
15 lines
283 B
C++
15 lines
283 B
C++
// Darkflame Universe
|
|
// Copyright 2026
|
|
|
|
#ifndef REGISTERWITHZONECONTROL_H
|
|
#define REGISTERWITHZONECONTROL_H
|
|
|
|
#include "CppScripts.h"
|
|
|
|
class RegisterWithZoneControl : public CppScripts::Script {
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
};
|
|
|
|
#endif //!REGISTERWITHZONECONTROL_H
|