7 lines
239 B
GDScript3
7 lines
239 B
GDScript3
|
|
extends RoomList
|
||
|
|
class_name RoomListSpaceship
|
||
|
|
|
||
|
|
func _init() -> void:
|
||
|
|
addRoom(preload("res://test/StartTest.png").get_image(),"res://test/StartTest.tscn")
|
||
|
|
addRoom(preload("res://test/test4Way.png").get_image(),"res://test/Test4Way.tscn")
|