mirror of
https://github.com/kwsch/pkNX.git
synced 2026-03-31 22:54:44 -05:00
File scoped namespaces for all lib projects netstandard2.0 => net6; now uniform. bye netframework!
15 lines
233 B
C#
15 lines
233 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,
|
|
}
|