mirror of
https://github.com/4sval/FModel.git
synced 2026-03-22 01:34:37 -05:00
64 lines
910 B
C#
64 lines
910 B
C#
namespace FModel
|
|
{
|
|
public enum EGame
|
|
{
|
|
Unknown,
|
|
Fortnite,
|
|
Valorant,
|
|
DeadByDaylight
|
|
}
|
|
|
|
public enum EFModel
|
|
{
|
|
Debug,
|
|
Release,
|
|
Unknown
|
|
}
|
|
|
|
public enum EPakLoader
|
|
{
|
|
Single,
|
|
All,
|
|
New,
|
|
Modified,
|
|
NewModified
|
|
}
|
|
|
|
public enum ECopy
|
|
{
|
|
Path,
|
|
PathNoExt,
|
|
PathNoFile,
|
|
File,
|
|
FileNoExt
|
|
}
|
|
|
|
public enum ELanguage : long
|
|
{
|
|
English,
|
|
French,
|
|
German,
|
|
Italian,
|
|
Spanish,
|
|
SpanishLatin,
|
|
Arabic,
|
|
Japanese,
|
|
Korean,
|
|
Polish,
|
|
PortugueseBrazil,
|
|
Russian,
|
|
Turkish,
|
|
Chinese,
|
|
TraditionalChinese
|
|
}
|
|
|
|
public enum EIconDesign : long
|
|
{
|
|
Default,
|
|
NoBackground,
|
|
NoText,
|
|
Mini,
|
|
Flat
|
|
}
|
|
}
|