20 lines
243 B
C#
20 lines
243 B
C#
|
|
using Microsoft.Maui.Graphics.Skia;
|
|||
|
|
|
|||
|
|
namespace Progrart.Core
|
|||
|
|
{
|
|||
|
|
public class RenderContext
|
|||
|
|
{
|
|||
|
|
SkiaBitmapExportContext context;
|
|||
|
|
|
|||
|
|
public void Init()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
[Serializable]
|
|||
|
|
public class RenderConfig
|
|||
|
|
{
|
|||
|
|
public int Scale;
|
|||
|
|
}
|
|||
|
|
}
|