14 lines
No EOL
397 B
C#
14 lines
No EOL
397 B
C#
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<DungeonDisplayData> ShowingDungeon;
|
|
public static Action<DungeonData> LoadDungeon;
|
|
}
|
|
} |