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