mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 03:28:59 +02: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();
|
|
}; |