SupaLidlGame/Items/ItemMetadata.cs

17 lines
308 B
C#
Raw Normal View History

2023-12-29 17:45:36 -08:00
using Godot;
namespace SupaLidlGame.Items;
[GlobalClass]
public partial class ItemMetadata : Resource
{
[Export]
public Utils.ScenePath Instance { get; set; }
[Export]
public string Name { get; set; }
[Export(PropertyHint.MultilineText)]
public string Description { get; set; }
}