GUECS: Minimal components from zedcaster that will let me make a GUI for a game.

This commit is contained in:
Zed A. Shaw 2025-04-21 23:45:04 -04:00
parent 10ecf50bc0
commit 1be770d62d
28 changed files with 2528 additions and 30 deletions

7
events.hpp Normal file
View file

@ -0,0 +1,7 @@
#pragma once
namespace Events {
enum GUI {
START, NOOP
};
}