mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
18 lines
333 B
C#
18 lines
333 B
C#
using System;
|
|
|
|
namespace Wabbajack.Compression.BSA.TES3Archive
|
|
{
|
|
[Flags]
|
|
public enum FileFlags : uint
|
|
{
|
|
Meshes = 0x1,
|
|
Textures = 0x2,
|
|
Menus = 0x4,
|
|
Sounds = 0x8,
|
|
Voices = 0x10,
|
|
Shaders = 0x20,
|
|
Trees = 0x40,
|
|
Fonts = 0x80,
|
|
Miscellaneous = 0x100
|
|
}
|
|
} |