mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-22 07:28:14 +00:00
15 lines
276 B
GDScript
Executable File
15 lines
276 B
GDScript
Executable File
extends Node
|
|
|
|
enum Type{LEVEL = 22962, RESOURCE_PACK = 25680}
|
|
enum Sort{RECENT, DOWNLOADS, FEATURED}
|
|
|
|
signal response_recieved(response: Dictionary)
|
|
signal response_failed()
|
|
|
|
@onready var http = HTTPRequest.new()
|
|
|
|
const GAME_ID = 7692
|
|
|
|
func _ready() -> void:
|
|
add_child(http)
|