PuzzleGame/PuzzleGameProject/Assets/Scripts/DungeonSelection/UIEvents.cs
2025-03-03 16:22:19 +01:00

13 lines
No EOL
294 B
C#

using System;
namespace DungeonSelection
{
// Announcing actions taken in UI
public static class UIEvents
{
public static Action NextDungeonClicked;
public static Action PreviousDungeonClicked;
public static Action<DungeonData> EnterDungeonClicked;
}
}