namespace BurnOutSharp
{
///
/// Subset of file types that are supported by the library
///
public enum SupportedFileType
{
///
/// Unknown or unsupported
///
UNKNOWN,
///
/// BFPK custom archive
///
BFPK,
///
/// Half-Life Level
///
BSP,
///
/// bzip2 archive
///
BZip2,
///
/// Executable or library
///
Executable,
///
/// Half-Life Game Cache File
///
GCF,
///
/// gzip archive
///
GZIP,
///
/// Key-value pair INI file
///
IniFile,
///
/// InstallShield archive v3
///
InstallShieldArchiveV3,
///
/// InstallShield cabinet file
///
InstallShieldCAB,
///
/// Microsoft cabinet file
///
MicrosoftCAB,
///
/// MPQ game data archive
///
MPQ,
///
/// Microsoft installation package
///
MSI,
///
/// Half-Life No Cache File
///
NCF,
///
/// Half-Life Package File
///
PAK,
///
/// PKWARE ZIP archive and derivatives
///
PKZIP,
///
/// PlayJ audio file
///
PLJ,
///
/// RAR archive
///
RAR,
///
/// 7-zip archive
///
SevenZip,
///
/// StarForce FileSystem file
///
SFFS,
///
/// SGA
///
SGA,
///
/// Tape archive
///
TapeArchive,
///
/// Various generic textfile formats
///
Textfile,
///
/// Half-Life 2 Level
///
VBSP,
///
/// Valve Package File
///
VPK,
///
/// Half-Life Texture Package File
///
WAD,
///
/// xz archive
///
XZ,
///
/// xz archive
///
XZP,
}
}