Files

17 lines
233 B
C
Raw Permalink Normal View History

2026-03-01 12:16:08 +08:00
#pragma once
#include "TargetGoal.h"
class HurtByTargetGoal : public TargetGoal
{
private:
bool alertSameType;
int timestamp;
2026-03-01 12:16:08 +08:00
public:
HurtByTargetGoal(PathfinderMob *mob, bool alertSameType);
2026-03-01 12:16:08 +08:00
bool canUse();
void start();
};