2025-05-13 19:22:01 +08:00

24 lines
524 B
C#

using System.Collections.Generic;
using System.ComponentModel;
using Godot;
using Godot.Bridge;
using Godot.NativeInterop;
[GlobalClass]
[ScriptPath("res://Scripts/Resources/ShopItems.cs")]
public partial class ShopItems : Resource
{
[Export(PropertyHint.None, "")]
public Items.IDs id;
[Export(PropertyHint.None, "")]
public SaveFile.Flags soldFlag = SaveFile.Flags.None;
[Export(PropertyHint.None, "")]
public SaveFile.Flags needFlag = SaveFile.Flags.None;
[Export(PropertyHint.None, "")]
public int cost;
}