mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-21 07:59:22 +01:00
11 lines
288 B
C#
11 lines
288 B
C#
namespace Penumbra.Interop.Structs;
|
|
|
|
public enum FileMode : byte
|
|
{
|
|
LoadUnpackedResource = 0,
|
|
LoadFileResource = 1, // The config files in MyGames use this.
|
|
|
|
// Probably debug options only.
|
|
LoadIndexResource = 0xA, // load index/index2
|
|
LoadSqPackResource = 0xB,
|
|
}
|