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
2018-08-18 00:14:30 +02:00

17 lines
296 B
C++
Executable File

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