mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-23 03:02:51 +01:00
a6dea8efbc
* add some mods * refactor * user friendly home page added * refactor * update readme * update readme
21 lines
713 B
C#
21 lines
713 B
C#
using Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Common
|
|
{
|
|
public class Constants
|
|
{
|
|
public const string NBloodExecutable = "nblood_server";
|
|
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") },
|
|
};
|
|
}
|
|
}
|