cosmic/scripts/item.gd
2023-11-13 17:13:36 +03:00

11 lines
242 B
GDScript

extends Resource
class_name Item
@export var name : String
@export var description : String
@export var min_price : float
@export var max_price : float
@export var weight : float
@export var icon : Texture
@export var type : Game.ITEM_TYPE