mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-07 01:47:13 +00:00
15 lines
211 B
C++
15 lines
211 B
C++
#pragma once
|
|
|
|
#include "Goal.h"
|
|
|
|
class RestrictSunGoal : public Goal {
|
|
private:
|
|
PathfinderMob* mob;
|
|
|
|
public:
|
|
RestrictSunGoal(PathfinderMob* mob);
|
|
|
|
bool canUse();
|
|
void start();
|
|
void stop();
|
|
}; |