4jcraft/Minecraft.World/AI/Goals/HurtByTargetGoal.h
2026-03-21 15:10:07 -05:00

16 lines
248 B
C++

#pragma once
#include "TargetGoal.h"
class HurtByTargetGoal : public TargetGoal {
private:
bool alertSameType;
int timestamp;
public:
HurtByTargetGoal(PathfinderMob* mob, bool alertSameType);
bool canUse();
void start();
};