GameBananaManager.gd 276 B

1234567891011121314
  1. extends Node
  2. enum Type{LEVEL = 22962, RESOURCE_PACK = 25680}
  3. enum Sort{RECENT, DOWNLOADS, FEATURED}
  4. signal response_recieved(response: Dictionary)
  5. signal response_failed()
  6. @onready var http = HTTPRequest.new()
  7. const GAME_ID = 7692
  8. func _ready() -> void:
  9. add_child(http)