4jcraft/targets/minecraft/world/entity/ai/goal/RestrictSunGoal.h
2026-04-01 13:27:58 -05:00

17 lines
233 B
C++

#pragma once
#include "Goal.h"
class PathfinderMob;
class RestrictSunGoal : public Goal {
private:
PathfinderMob* mob;
public:
RestrictSunGoal(PathfinderMob* mob);
bool canUse();
void start();
void stop();
};