Initial push

This commit is contained in:
N0ble 2025-07-21 20:38:11 -06:00
commit 3240f07946
335 changed files with 11248 additions and 0 deletions

View file

@ -0,0 +1,15 @@
extends Resource
class_name Inventory
var items : Array[RigidBody3D]
func get_current_slot(index : int) -> RigidBody3D:
return items[index]
func add_item(item : RigidBody3D) -> void:
items.append(item)
func remove_items(item : RigidBody3D) -> void:
items.erase(item)

View file

@ -0,0 +1 @@
uid://darcj1vokaiv2

View file

@ -0,0 +1,9 @@
extends Resource
class_name Item
@export var value : int
@export var name : String
@export var weight : int
@export var primary_objective : bool
@export var secondary_objective : bool

View file

@ -0,0 +1 @@
uid://ctwdmnqaxkty