13 lines
No EOL
294 B
C#
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;
|
|
|
|
}
|
|
} |