#pragma once namespace Events { enum GUI { START, COMBAT, LOOT, DEATH, STAIRS }; struct Combat { int player_did; int enemy_did; }; }