mysimulation/server/tso.files/ImageLoaderHelpers.cs
Tony Bark 8fec258215 Added FSO.Files for use with the API server
Don't ask me. FreeSO is the prime example of dependency hell.
2024-05-01 04:38:12 -04:00

11 lines
272 B
C#
Executable file

using System;
using System.IO;
namespace FSO.Files
{
public static class ImageLoaderHelpers
{
public static Func<Stream, Tuple<byte[], int, int>> BitmapFunction = null;
public static Action<byte[], int, int, Stream> SavePNGFunc = null;
}
}