调整了模板

This commit is contained in:
CortexCore
2023-07-17 04:10:14 +08:00
parent 498b0617f8
commit e27cce2ac3
56 changed files with 2165 additions and 581 deletions

View File

@@ -0,0 +1,20 @@
using Godot;
using System;
using BITFactory;
namespace BITKit;
public interface IFormField
{
int FieldCount { get; }
string[] FieldNames { get; }
string[] FieldTypes { get; }
string[] DefaultValues { get; }
}
[GlobalClass]
public abstract partial class FormResource : Resource
{
public abstract string Name { get; set;}
public abstract IFormField[] Fields { get; set; }
}