The FSM for boss fights is started.

This commit is contained in:
Zed A. Shaw 2025-09-27 14:35:24 -04:00
parent fdc0bcdb3b
commit 3b11ed0a75
3 changed files with 33 additions and 0 deletions

11
boss/fsm.cpp Normal file
View file

@ -0,0 +1,11 @@
#include "boss/fsm.hpp"
namespace boss {
FSM::FSM() {
}
void event(Event ev, std::any data={}) {
(void)ev;
(void)data;
}
}