2023-09-15 23:02:46 +08:00
|
|
|
#if Deprecated
|
2023-07-17 04:10:14 +08:00
|
|
|
using Godot;
|
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace BITFactory;
|
|
|
|
[GlobalClass]
|
|
|
|
public partial class IDIS_AutoRegResource : Resource
|
|
|
|
{
|
|
|
|
[Export] public string HandleSeed;
|
|
|
|
|
|
|
|
[ExportCategory("IDIS")]
|
|
|
|
[Export] public string Format;
|
|
|
|
[Export] public string Category;
|
|
|
|
[Export] public string Name;
|
|
|
|
[Export] public string Value;
|
|
|
|
|
|
|
|
[ExportCategory("标识引用")]
|
|
|
|
[Export] public string RefHandleSeed;
|
|
|
|
|
|
|
|
}
|
2023-09-15 23:02:46 +08:00
|
|
|
#endif
|