pkNX/pkNX.Containers/ContainerParent.cs
2018-11-13 19:44:43 -08:00

15 lines
278 B
C#

namespace pkNX.Containers
{
public enum ContainerParent
{
/// <summary>
/// File is located in the RomFS.
/// </summary>
RomFS,
/// <summary>
/// File is located in the ExeFS.
/// </summary>
ExeFS,
}
}