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
2017-11-13 09:41:53 +03:00

20 lines
257 B
C++

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