mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2026-06-22 06:34:26 +00:00
14 lines
423 B
C++
14 lines
423 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
#include "GameMessages.h"
|
|
|
|
class CountdownDestroyAI : public CppScripts::Script {
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
void CountdownStartup(Entity& self);
|
|
void OnHit(Entity* self, Entity* attacker) override;
|
|
void OnTimerDone(Entity* self, std::string timerName) override;
|
|
bool OnNotifyCombatAIStateChange(Entity& self, GameMessages::NotifyCombatAIStateChange& msg);
|
|
};
|