mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-27 10:58:59 +05:00
17 lines
233 B
C++
17 lines
233 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();
|
|
};
|