Initial commit
This commit is contained in:
22
Minecraft.World/MoveIndoorsGoal.h
Normal file
22
Minecraft.World/MoveIndoorsGoal.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include "Goal.h"
|
||||
|
||||
class PathfinderMob;
|
||||
class DoorInfo;
|
||||
|
||||
class MoveIndoorsGoal : public Goal
|
||||
{
|
||||
private:
|
||||
PathfinderMob *mob;
|
||||
weak_ptr<DoorInfo> doorInfo;
|
||||
int insideX, insideZ;
|
||||
|
||||
public:
|
||||
MoveIndoorsGoal(PathfinderMob *mob);
|
||||
|
||||
bool canUse();
|
||||
bool canContinueToUse();
|
||||
void start();
|
||||
void stop();
|
||||
};
|
||||
Reference in New Issue
Block a user