Basic inventory, item and storage

This commit is contained in:
Rendo 2025-10-12 16:28:44 +05:00
commit 66a623e568
11 changed files with 155 additions and 1 deletions

7
scripts/item.gd Normal file
View file

@ -0,0 +1,7 @@
extends Resource
class_name Item
@export var display_name : StringName
@export var preview : Texture2D
@export var stack_size : int