Files
LegacyMultiplayerProject/Minecraft.World/RestrictSunGoal.h
DrPerkyLegit 5b19646cc6 init
2026-06-23 01:27:12 -04:00

16 lines
196 B
C++

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