Implemented dungeon selector

This commit is contained in:
Max 2025-03-03 16:22:19 +01:00
parent 514d985ddb
commit aeeb15cb12
46 changed files with 26355 additions and 32 deletions

View file

@ -0,0 +1,14 @@
using System;
namespace DungeonSelection
{
// Announcing in game events
public static class GameEvents
{
public static Action DungeonSelectionStarted;
public static Action ShowingLastDungeon;
public static Action ShowingFirstDugeon;
public static Action<DungeonData> ShowingDungeon;
public static Action<DungeonData> LoadDungeon;
}
}