mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:45:33 +00:00
15 lines
No EOL
292 B
C#
15 lines
No EOL
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;
|
|
}
|
|
} |