mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-03 11:25:25 -05:00
15 lines
278 B
C#
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,
|
|
}
|
|
} |