Files
cafeberry/Minecraft.World/HurtByTargetGoal.h
T
2026-07-03 18:34:01 +01:00

17 lines
249 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();
};