[Enums] Add enum for split/merge type

This commit is contained in:
Matt Nadareski
2017-01-09 10:01:02 -08:00
parent ab74d4049d
commit 3ffde83894

View File

@@ -254,6 +254,17 @@
Game,
}
/// <summary>
/// Determines how a DAT will be split internally
/// </summary>
public enum SplitType
{
None = 0,
Split,
Merged,
MergedWithDevice,
}
#endregion
#region DatItem related