diff --git a/CUE4Parse b/CUE4Parse
index ab6dff8e..11a92870 160000
--- a/CUE4Parse
+++ b/CUE4Parse
@@ -1 +1 @@
-Subproject commit ab6dff8e98e94335916a549810466eb4571a072b
+Subproject commit 11a92870024a088888aae79c74d8ae0c6c8af3e5
diff --git a/FModel/Framework/FakeCUE4Parse.cs b/FModel/Framework/FakeCUE4Parse.cs
new file mode 100644
index 00000000..43e53edd
--- /dev/null
+++ b/FModel/Framework/FakeCUE4Parse.cs
@@ -0,0 +1,27 @@
+using System;
+using CUE4Parse.Compression;
+using CUE4Parse.FileProvider.Objects;
+using CUE4Parse.UE4.Readers;
+
+namespace FModel.Framework;
+
+public class FakeGameFile : GameFile
+{
+ public FakeGameFile(string path) : base(path, 0)
+ {
+
+ }
+
+ public override bool IsEncrypted => false;
+ public override CompressionMethod CompressionMethod => CompressionMethod.None;
+
+ public override byte[] Read()
+ {
+ throw new NotImplementedException();
+ }
+
+ public override FArchive CreateReader()
+ {
+ throw new NotImplementedException();
+ }
+}
diff --git a/FModel/MainWindow.xaml b/FModel/MainWindow.xaml
index 3eabad34..d85febbe 100644
--- a/FModel/MainWindow.xaml
+++ b/FModel/MainWindow.xaml
@@ -502,7 +502,14 @@
-