-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPK2Mode.cs
24 lines (22 loc) · 866 Bytes
/
PK2Mode.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace SlimPK2
{
public enum PK2Mode
{
/// <summary>
/// This mode will index the blocks of the PK2 but will not order them in any way.
/// Use this mode if you wish to access files fast and uncomplicated
/// </summary>
IndexBlocks = 0,
/// <summary>
/// This mode will create its very own index to provide possibilities like file paths and sub directory structures.
/// Costs a lot more RAM but is the most detailed mode.
/// </summary>
Index = 1,
/// <summary>
/// This mode will allow you to freely browse the PK2 archive.
/// It's the fastest and most efficient way to work with the PK2 but you will need to manually change directories, which
/// may be complicated for some users
/// </summary>
FreeBrowse = 2
}
}