aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/RestrictSunGoal.h
blob: bf89aeef06421c095f375a79e92ad3a56e0073c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "Goal.h"

class RestrictSunGoal : public Goal
{
private:
	PathfinderMob *mob;

public:
	RestrictSunGoal(PathfinderMob *mob);

	bool canUse();
	void start();
	void stop();
};