mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-01-01 09:19:31 -06:00
9 lines
223 B
C++
9 lines
223 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class AgTurret : public CppScripts::Script {
|
|
void OnStartup(Entity* self);
|
|
void OnTimerDone(Entity* self, std::string timerName);
|
|
void OnRebuildStart(Entity* self, Entity* user);
|
|
};
|