using LibationFileManager;
using System;
namespace LibationUiBase
{
public static class BaseUtil
{
/// A delegate that loads image bytes into the the UI framework's image format.
public static Func LoadImage { get; private set; }
public static void SetLoadImageDelegate(Func tryLoadImage)
=> LoadImage = tryLoadImage;
}
}