2024-06-14 09:37:33 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Questionable.Model.V1;
|
2024-06-01 20:01:50 +00:00
|
|
|
|
|
2024-06-14 09:37:33 +00:00
|
|
|
|
#if RELEASE
|
2024-06-01 20:01:50 +00:00
|
|
|
|
namespace Questionable.QuestPaths;
|
|
|
|
|
|
2024-06-14 09:37:33 +00:00
|
|
|
|
public static partial class AssemblyQuestLoader
|
2024-06-01 20:01:50 +00:00
|
|
|
|
{
|
2024-06-14 09:37:33 +00:00
|
|
|
|
public static IReadOnlyDictionary<ushort, QuestData> GetQuests() => Quests;
|
2024-06-01 20:01:50 +00:00
|
|
|
|
}
|
2024-06-03 12:20:02 +00:00
|
|
|
|
#endif
|