PuzzleGame/PuzzleGameProject/Assets/Scripts/DungeonSelection/UIEvents.cs
2025-03-04 17:02:03 +01:00

12 lines
No EOL
293 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;
}
}