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);