Revert "separate AgSpaceStuff and AgShipShake"

This commit is contained in:
Avery
2021-12-07 18:14:15 -08:00
committed by GitHub
parent 5281253f66
commit f68f683e22
7 changed files with 89 additions and 125 deletions

View File

@@ -5,4 +5,14 @@ class AgSpaceStuff : public CppScripts::Script {
public:
void OnStartup(Entity* self);
void OnTimerDone(Entity* self, std::string timerName);
void DoShake(Entity* self, bool explodeIdle);
std::string DebrisFX = "DebrisFX";
std::string ShipFX = "ShipFX";
std::string ShipFX2 = "ShipFX2";
std::u16string FXName = u"camshake-bridge";
private:
Entity* GetEntityInGroup(const std::string& group);
};