1
0

essgee fixed

This commit is contained in:
sin365 2025-04-24 19:53:55 +08:00
parent e66740b8a9
commit 1f33d35394

View File

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