mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 16:14:22 +00:00
13 lines
No EOL
316 B
GDScript
13 lines
No EOL
316 B
GDScript
@icon("res://behaviours/collectible.svg")
|
|
extends Node
|
|
class_name Collectible
|
|
|
|
|
|
## Marker class that stores the value of a collectible item.
|
|
|
|
|
|
## How many of that item this [Collectible] represents.
|
|
@export var quantity: int = 1
|
|
|
|
## What kind of item this [Collectible] represents.
|
|
@export var kind: StringName = &"" |