新增默认脚本内容

This commit is contained in:
2025-10-27 00:29:32 +08:00
parent 104a80e527
commit 971baf8c9e
2 changed files with 24 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Convention.RScript.Variable.CStyle
{
public class RScriptInjectVariable : Variable.RScriptInjectVariable
public class RScriptVariableGenerater : RScriptInjectVariableGenerater
{
public static string GetTypename(Type type)
{
@@ -18,7 +18,7 @@ namespace Convention.RScript.Variable.CStyle
private int layer = 0;
private string Prefix => new('\t', layer);
public RScriptInjectVariable(Type targetType, [MaybeNull] Generater generater, string name) : base(targetType, generater, name)
public RScriptVariableGenerater(Type targetType, [MaybeNull] Generater generater, string name) : base(targetType, generater, name)
{
}