Init commit

This commit is contained in:
Benjamin Morgan 2025-10-19 20:04:59 -06:00
commit a4452b69c4
59 changed files with 1259 additions and 0 deletions

7
Scripts/explosion.gd Normal file
View file

@ -0,0 +1,7 @@
extends Area2D
# Called when the node enters the scene tree for the first time.
func _ready() -> void:
# Free self after 1.5 seconds
await get_tree().create_timer(0.5).timeout
queue_free()