Files
MinecraftConsoles/Minecraft.World/DefendVillageTargetGoal.h
T
2026-07-09 04:15:40 -04:00

18 lines
299 B
C++

#pragma once
#include "TargetGoal.h"
class VillagerGolem;
class DefendVillageTargetGoal : public TargetGoal
{
private:
VillagerGolem *golem; // Owner of this goal
weak_ptr<LivingEntity> potentialTarget;
public:
DefendVillageTargetGoal(VillagerGolem *golem);
bool canUse();
void start();
};