26 lines
258 B
C++
Executable File
26 lines
258 B
C++
Executable File
/*
|
|
* 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();
|
|
}
|
|
}
|
|
}
|