mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-10 22:04:11 +00:00
16 lines
248 B
C++
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();
|
|
};
|