Turn Settings and Priority into their own types.

This commit is contained in:
Ottermandias 2024-04-05 16:35:55 +02:00
parent 77bf441e62
commit b1ca073276
29 changed files with 422 additions and 298 deletions

View file

@ -7,8 +7,8 @@ public interface IMod
{
LowerString Name { get; }
public int Index { get; }
public int Priority { get; }
public int Index { get; }
public ModPriority Priority { get; }
public ISubMod Default { get; }
public IReadOnlyList<IModGroup> Groups { get; }