mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-21 17:33:00 +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();
|
|
};
|