From 5efbd5b006254b25be6691612f5fe87ff2210af8 Mon Sep 17 00:00:00 2001 From: HumanoidSandvichDispenser Date: Thu, 11 Jan 2024 01:27:24 -0800 Subject: [PATCH] add price data properties for item metadata --- Items/ItemMetadata.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Items/ItemMetadata.cs b/Items/ItemMetadata.cs index ef2adad..8f0e0d9 100644 --- a/Items/ItemMetadata.cs +++ b/Items/ItemMetadata.cs @@ -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; } }