Inventory context

This commit is contained in:
Rendo 2025-10-16 22:05:24 +05:00
commit fed57e38df
17 changed files with 128 additions and 108 deletions

View file

@ -0,0 +1,13 @@
extends RefCounted
class_name InventoryContext
func _init(_source: Structure, _target: Structure,_position: Vector2) -> void:
self.source = _source
self.target = _target
self.position = _position
var source : Structure
var target : Structure
var position : Vector2