This commit is contained in:
Eric Vande Voort
2025-01-07 16:10:03 -06:00
commit 7eb0dea424
147 changed files with 9096 additions and 0 deletions

7
scripts/fuel_tank.gd Normal file
View File

@@ -0,0 +1,7 @@
extends Pickup
class_name FuelTank
func pickup(rocket: Rocket):
if not is_queued_for_deletion():
DataHandler.pickup('fuel')
super(rocket)