Files
DrPerkyLegit 5b19646cc6 init
2026-06-23 01:27:12 -04:00

22 lines
313 B
C++

#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();
};