18 lines
161 B
GDScript3
18 lines
161 B
GDScript3
|
class_name ItemContainer extends Interactible
|
||
|
|
||
|
|
||
|
@export
|
||
|
var items : Array[Item]
|
||
|
|
||
|
|
||
|
func pop_item(index: int = 0):
|
||
|
pass
|
||
|
|
||
|
|
||
|
func add_item(item: Item):
|
||
|
pass
|
||
|
|
||
|
|
||
|
|
||
|
|