From 1f33d353946256492ca48151462fe1d51e461648 Mon Sep 17 00:00:00 2001 From: sin365 <353374337@qq.com> Date: Thu, 24 Apr 2025 19:53:55 +0800 Subject: [PATCH] essgee fixed --- .../Emulator/EssgeeEmulator/UEssgeeInterface/UEGIO.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGIO.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGIO.cs index 306081e5..0221d554 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGIO.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Emulator/EssgeeEmulator/UEssgeeInterface/UEGIO.cs @@ -13,6 +13,11 @@ public class UEGIO : IEssgeeIOSupport return AxiIO.File.ReadAllBytes(path); } + public void File_WriteAllBytes(string savePath, byte[] data) + { + AxiIO.File.WriteAllBytes(savePath, data); + } + public void File_WriteAllBytesFromStre(string path, MemoryStream ms) { AxiIO.File.WriteAllBytesFromStream(path, ms);