iFactory.Godot/Artists/Scripts/Resource/StringResource.cs

12 lines
184 B
C#
Raw Normal View History

2023-06-15 21:52:13 +08:00
using Godot;
using System;
namespace BITKit;
public partial class StringResource : Resource
{
[Export]
private string value { get; set; }
public string Value => value;
}