28 lines
274 B
C++
Executable File
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();
|
|
}
|
|
}
|
|
}
|