mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-22 12:58:13 +05:00
16 lines
196 B
C++
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();
|
|
}; |