mirror of https://github.com/profan/ld-39-jam.git
10 lines
218 B
GDScript3
10 lines
218 B
GDScript3
|
extends Node2D
|
||
|
|
||
|
onready var right_one = get_node("RightThruster 1")
|
||
|
onready var right_two = get_node("RightThruster 1")
|
||
|
|
||
|
func _ready():
|
||
|
# Called every time the node is added to the scene.
|
||
|
# Initialization here
|
||
|
pass
|