mirror of
https://github.com/4sval/FModel.git
synced 2026-03-30 13:45:40 -05:00
87 lines
1.4 KiB
C#
87 lines
1.4 KiB
C#
namespace FModel
|
|
{
|
|
public enum EGame
|
|
{
|
|
Unknown,
|
|
Fortnite,
|
|
Valorant,
|
|
DeadByDaylight,
|
|
Borderlands3,
|
|
MinecraftDungeons,
|
|
BattleBreakers,
|
|
Spellbreak,
|
|
StateOfDecay2,
|
|
TheCycle,
|
|
TheOuterWorlds,
|
|
RogueCompany
|
|
}
|
|
|
|
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 = 0,
|
|
AustralianEnglish = 15,
|
|
BritishEnglish = 16,
|
|
French = 1,
|
|
German = 2,
|
|
Italian = 3,
|
|
Spanish = 4,
|
|
SpanishLatin = 5,
|
|
SpanishMexico = 17,
|
|
Arabic = 6,
|
|
Japanese = 7,
|
|
Korean = 8,
|
|
Polish = 9,
|
|
PortugueseBrazil = 10,
|
|
PortuguesePortugal = 18,
|
|
Russian = 11,
|
|
Turkish = 12,
|
|
Chinese = 13,
|
|
TraditionalChinese = 14,
|
|
Swedish = 19,
|
|
Thai = 20,
|
|
Indonesian = 21,
|
|
VietnameseVietnam = 22,
|
|
Zulu = 23
|
|
}
|
|
|
|
public enum EJsonType: long
|
|
{
|
|
Default,
|
|
Positioned
|
|
}
|
|
|
|
public enum EIconDesign : long
|
|
{
|
|
Default,
|
|
NoBackground,
|
|
NoText,
|
|
Mini,
|
|
Flat
|
|
}
|
|
}
|