This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
chovy-gm/GMAssetCompiler/ViewFont.cs

18 lines
231 B
C#

using System.Drawing;
namespace GMAssetCompiler
{
internal class ViewFont : View<GMFont>
{
public ViewFont(GMFont _entry)
: base(_entry)
{
}
public override Image PrepareImage()
{
return m_this.Bitmap;
}
}
}