Now have an autowalker class that allows me to drive the game from an external source.

This commit is contained in:
Zed A. Shaw 2025-02-26 13:39:25 -05:00
parent 1aba26831b
commit d4355a608d
6 changed files with 137 additions and 121 deletions

13
autowalker.hpp Normal file
View file

@ -0,0 +1,13 @@
#pragma once
#include "gui_fsm.hpp"
struct Autowalker {
gui::FSM& fsm;
Autowalker(gui::FSM& fsm)
: fsm(fsm) {}
void autowalk();
void start_autowalk();
};