2020-01-27 13:23:00 +01:00
|
|
|
|
using Model;
|
|
|
|
|
using System;
|
2020-01-24 14:34:10 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Common
|
|
|
|
|
{
|
|
|
|
|
public class Constants
|
|
|
|
|
{
|
2020-01-27 13:23:00 +01:00
|
|
|
|
public static readonly IReadOnlyDictionary<string, Mod> SupportedMods = new Dictionary<string, Mod>()
|
|
|
|
|
{
|
|
|
|
|
{ "BLOOD", new Mod("BLOOD", "Blood", "") },
|
|
|
|
|
{ "CRYPTIC", new Mod("CRYPTIC", "Cryptic Passage", "-ini CRYPTIC.INI") },
|
|
|
|
|
{ "DW", new Mod("DW", "Death Wish", "-ini dw.ini") },
|
|
|
|
|
{ "FO", new Mod("FO", "Fleshed Out", "-ini fo.ini") },
|
|
|
|
|
{ "TWOIRA", new Mod("TWOIRA", "The Way of Ira", "-ini TWOIRA/twoira.ini -j=TWOIRA") },
|
|
|
|
|
};
|
2020-01-24 14:34:10 +01:00
|
|
|
|
}
|
|
|
|
|
}
|