Files
MinecraftConsoles/Minecraft.World/RestrictSunGoal.h

16 lines
196 B
C
Raw Normal View History

2026-03-01 12:16:08 +08:00
#pragma once
#include "Goal.h"
class RestrictSunGoal : public Goal
{
private:
PathfinderMob *mob;
public:
RestrictSunGoal(PathfinderMob *mob);
bool canUse();
void start();
void stop();
};