11 lines
170 B
C#
11 lines
170 B
C#
|
using Godot;
|
||
|
|
||
|
namespace BITKit;
|
||
|
|
||
|
public partial class StringResource : Resource
|
||
|
{
|
||
|
[Export]
|
||
|
private string value { get; set; }
|
||
|
public string Value => value;
|
||
|
}
|