add price data properties for item metadata

godot-4.3
HumanoidSandvichDispenser 2024-01-11 01:27:24 -08:00
parent 5567032557
commit 5efbd5b006
Signed by: sandvich
GPG Key ID: 9A39BE37E602B22D
1 changed files with 6 additions and 0 deletions

View File

@ -16,4 +16,10 @@ public partial class ItemMetadata : Resource
[Export(PropertyHint.MultilineText)]
public string Description { get; set; }
[Export]
public int BuyPrice { get; set; }
[Export]
public int SellPrice { get; set; }
}