Almost there...

This commit is contained in:
Ottermandias 2022-04-18 16:14:13 +02:00
parent f3b906007d
commit 65bd1d1b52
59 changed files with 4733 additions and 6194 deletions

View file

@ -56,6 +56,9 @@ public partial class ModCollection
IEnumerator IEnumerable.GetEnumerator()
=> GetEnumerator();
public IEnumerable< ModCollection > GetEnumeratorWithEmpty()
=> _collections;
public Manager( Mod2.Manager manager )
{
_modManager = manager;
@ -227,7 +230,8 @@ public partial class ModCollection
case ModOptionChangeType.OptionAdded:
case ModOptionChangeType.OptionDeleted:
case ModOptionChangeType.OptionChanged:
default: throw new ArgumentOutOfRangeException( nameof( type ), type, null );
default:
throw new ArgumentOutOfRangeException( nameof( type ), type, null );
}
}