mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-15 04:38:21 +00:00
e966d3a644
* Testing Scripts Testing splitting AgSpaceStuff into AgSpaceStuff and AgShipShake * fixed inclusions * Removed DoShake * cleaning up * consistent if statements * Update dScripts/ai/AG/AgShipShake.h Co-authored-by: David Markowitz <39972741+EmosewaMC@users.noreply.github.com> --------- Co-authored-by: David Markowitz <39972741+EmosewaMC@users.noreply.github.com>
10 lines
186 B
C++
10 lines
186 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class AgSpaceStuff : public CppScripts::Script {
|
|
public:
|
|
void OnStartup(Entity* self);
|
|
void OnTimerDone(Entity* self, std::string timerName);
|
|
};
|
|
|