There's a simple death screen now and you can exit. More work on what death means later.

This commit is contained in:
Zed A. Shaw 2025-01-07 14:07:10 -05:00
parent f2864a62ee
commit 6cabd62c7f
5 changed files with 72 additions and 19 deletions

View file

@ -2,11 +2,15 @@
namespace Events {
enum GUI {
START, COMBAT, LOOT
START, COMBAT, LOOT, DEATH
};
struct Combat {
int player_did;
int enemy_did;
};
struct Death {
int placeholder = 0;
};
}