17 lines
308 B
C#
17 lines
308 B
C#
|
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; }
|
||
|
}
|