wabbajack/Compression.BSA/BSA/FileFlags.cs

21 lines
368 B
C#
Raw Normal View History

2020-08-11 12:15:03 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Compression.BSA
{
[Flags]
public enum FileFlags : uint
{
Meshes = 0x1,
Textures = 0x2,
Menus = 0x4,
Sounds = 0x8,
Voices = 0x10,
Shaders = 0x20,
Trees = 0x40,
Fonts = 0x80,
Miscellaneous = 0x100
}
}