Added Weapon

This commit is contained in:
2025-10-21 17:58:33 +03:00
parent 2d58e385fd
commit 594e2f95f5
9 changed files with 53 additions and 3 deletions
+11
View File
@@ -0,0 +1,11 @@
extends Node2D
func _ready() -> void:
var texture := PlaceholderTexture2D.new()
texture.size = Vector2(10, 7)
$Sprite2D.texture = texture
func shoot() -> void:
print("shoot")