14 lines
No EOL
374 B
C#
14 lines
No EOL
374 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;
|
|
public static Action CloseRules;
|
|
public static Action ShowRules;
|
|
}
|
|
} |