Working on the progrart functions.

This commit is contained in:
Creeper Lv
2025-12-25 23:00:26 +11:00
parent 2d2fec0bed
commit 18b7b00fc3
17 changed files with 400 additions and 96 deletions

View File

@@ -0,0 +1,16 @@
using Jint.Native;
using SkiaSharp;
using System;
using System.Collections.Generic;
using System.Text;
namespace Progrart.Core.JSExecution
{
public static class ProgrartConversion
{
public static SKShader? ObtainFromJsObject(JsObject jsObject)
{
return null;
}
}
}