mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-23 06:25:39 +00:00
9 lines
232 B
GDScript3
9 lines
232 B
GDScript3
|
extends Resource
|
||
|
class_name AppData
|
||
|
|
||
|
#@export var about_links: Dictionary[String, Link] = {}
|
||
|
#@export var emulators: Dictionary[String, Emulator] = {}
|
||
|
|
||
|
@export var about_links: Dictionary = {}
|
||
|
@export var emulators: Dictionary = {}
|