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/hacks/Walkbot.hpp
2018-04-28 20:08:47 +03:00

28 lines
274 B
C++
Executable File

/*
* Walkbot.hpp
*
* Created on: Jul 23, 2017
* Author: nullifiedcat
*/
#pragma once
#include "config.h"
namespace hacks
{
namespace shared
{
namespace walkbot
{
void Initialize();
#if ENABLE_VISUALS
void Draw();
#endif
void Move();
void OnLevelInit();
}
}
}