diff --git a/FModel/Enums.cs b/FModel/Enums.cs
index 1c65c51a..7aba5152 100644
--- a/FModel/Enums.cs
+++ b/FModel/Enums.cs
@@ -41,29 +41,29 @@
public enum ELanguage : long
{
- English,
- AustralianEnglish,
- BritishEnglish,
- French,
- German,
- Italian,
- Spanish,
- SpanishLatin,
- SpanishMexico,
- Arabic,
- Japanese,
- Korean,
- Polish,
- PortugueseBrazil,
- PortuguesePortugal,
- Russian,
- Turkish,
- Chinese,
- TraditionalChinese,
- Swedish,
- Thai,
- Indonesian,
- VietnameseVietnam
+ 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
}
public enum EJsonType: long
diff --git a/FModel/FModel.csproj b/FModel/FModel.csproj
index 50d7786d..04e88c80 100644
--- a/FModel/FModel.csproj
+++ b/FModel/FModel.csproj
@@ -127,6 +127,8 @@
+
+
diff --git a/FModel/PakReader/Parsers/Class/UAkAudioEvent.cs b/FModel/PakReader/Parsers/Class/UAkAudioEvent.cs
deleted file mode 100644
index e8f432dd..00000000
--- a/FModel/PakReader/Parsers/Class/UAkAudioEvent.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System.Collections;
-using System.Collections.Generic;
-using System.Runtime.CompilerServices;
-
-namespace PakReader.Parsers.Class
-{
- public sealed class UAkAudioEvent : IUExport
- {
- readonly Dictionary Map;
-
- internal UAkAudioEvent(PackageReader reader)
- {
- _ = new UObject(reader, true);
- Map = new Dictionary(1)
- {
- { "MaxAttenuationRadius", reader.ReadFloat() }
- };
- }
-
- public object this[string key] => Map[key];
- public IEnumerable Keys => Map.Keys;
- public IEnumerable