CPF/CPF.Skia/SkiaFont.cs

23 lines
391 B
C#
Raw Permalink Normal View History

2023-11-21 23:05:03 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CPF.Drawing;
namespace CPF.Skia
{
public class SkiaFont : IDisposable
{
public string FontFamily { get; set; }
public float FontSize { get; set; }
public FontStyles FontStyle { get; set; }
public void Dispose()
{
}
}
}