10 lines
199 B
GDScript
10 lines
199 B
GDScript
|
class_name ItemStack
|
||
|
extends Node
|
||
|
|
||
|
var item:Item = null
|
||
|
@export var count:int = 1
|
||
|
|
||
|
# Called when the node enters the scene tree for the first time.
|
||
|
func _ready():
|
||
|
pass # Replace with function body.
|