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-17 19:54:11 +02:00

16 lines
309 B
C++

#pragma once
#include "common.hpp"
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);
int findClosestNavSquare(Vector vec);
bool Prepare();
void CreateMove();
} // namespace nav