NBloodServerSupervisor/Common/Constants.cs

20 lines
649 B
C#
Raw Normal View History

using Model;
using System;
2020-01-24 14:34:10 +01:00
using System.Collections.Generic;
using System.Text;
namespace Common
{
public class Constants
{
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
}
}