Questionable/QuestPaths/AssemblyQuestLoader.cs

12 lines
254 B
C#
Raw Normal View History

2024-06-14 11:37:33 +02:00
using System.Collections.Generic;
using Questionable.Model.V1;
2024-06-01 22:01:50 +02:00
2024-06-14 11:37:33 +02:00
#if RELEASE
2024-06-01 22:01:50 +02:00
namespace Questionable.QuestPaths;
2024-06-14 11:37:33 +02:00
public static partial class AssemblyQuestLoader
2024-06-01 22:01:50 +02:00
{
2024-07-11 13:14:54 +02:00
public static IReadOnlyDictionary<ushort, QuestRoot> GetQuests() => Quests;
2024-06-01 22:01:50 +02:00
}
#endif