This repository has been archived on 2024-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
cathook/include/navparser.hpp

18 lines
381 B
C++

#pragma once
#include "common.hpp"
#include "micropather.h"
#include "pwd.h"
namespace nav
{
extern bool init;
extern bool ReadyForCommands;
extern std::vector<CNavArea> areas;
std::vector<Vector> findPath(Vector loc, Vector dest);
bool NavTo(Vector dest, bool navToLocalCenter = true);
int findClosestNavSquare(Vector vec);
bool Prepare();
void CreateMove();
} // namespace nav