mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 02:03:38 +00:00
18 lines
303 B
C++
18 lines
303 B
C++
#pragma once
|
|
|
|
#include "Goal.h"
|
|
|
|
class RandomLookAroundGoal : public Goal {
|
|
private:
|
|
Mob* mob;
|
|
double relX, relZ;
|
|
int lookTime;
|
|
|
|
public:
|
|
RandomLookAroundGoal(Mob* mob);
|
|
|
|
virtual bool canUse();
|
|
virtual bool canContinueToUse();
|
|
virtual void start();
|
|
virtual void tick();
|
|
}; |