mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:15:33 +00:00
15 lines
292 B
C#
15 lines
292 B
C#
|
|
using Godot;
|
|||
|
|
|
|||
|
|
namespace Cirno.Scripts.Resources.TestGeneric;
|
|||
|
|
|
|||
|
|
[GlobalClass]
|
|||
|
|
public partial class GenericTestResourceBase : Resource
|
|||
|
|
{
|
|||
|
|
[Export]
|
|||
|
|
public int Value { get; set; }
|
|||
|
|
|
|||
|
|
public void Test()
|
|||
|
|
{
|
|||
|
|
var asfd = this.MemberwiseClone() as GenericTestResourceBase;
|
|||
|
|
}
|
|||
|
|
}
|