GUI is now decoupled from the ECS using the new DinkyECS event queues. That makes it easier to update and change the GUI without having to constantly alter the systems.

This commit is contained in:
Zed A. Shaw 2024-10-29 18:33:11 -04:00
parent da8011cb14
commit 04350cb51e
4 changed files with 58 additions and 16 deletions

5
events.hpp Normal file
View file

@ -0,0 +1,5 @@
#pragma once
enum GUIEvent {
START, HIT, MISS, DEAD
};