23 lines
542 B
C#
23 lines
542 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BriarQueen.Data.Identifiers
|
|
{
|
|
public enum PuzzleKey
|
|
{
|
|
AshwickMarketGate,
|
|
}
|
|
|
|
public static class PuzzleIdentifiers
|
|
{
|
|
public static readonly Dictionary<PuzzleKey, string> AllPuzzles = new()
|
|
{
|
|
{ PuzzleKey.AshwickMarketGate, "CH1:Puzzle:AshwickMarketGate" },
|
|
};
|
|
|
|
// Optional helper to get all puzzle IDs
|
|
public static IEnumerable<string> GetAllPuzzleIDs()
|
|
{
|
|
return AllPuzzles.Values;
|
|
}
|
|
}
|
|
} |