mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 23:01:21 +00:00
12 lines
272 B
C#
12 lines
272 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|