Added more weapons

This commit is contained in:
2025-11-07 16:40:56 +03:00
parent 0740570263
commit 32fa3dca57
64 changed files with 459 additions and 37 deletions
+12
View File
@@ -0,0 +1,12 @@
extends AbstractWeapon
@onready var sprite := $Sprite2D
func _ready() -> void:
var texture := PlaceholderTexture2D.new()
texture.size = Vector2(10, 7)
sprite.texture = texture
super._ready()