Initial Commit

Initial commit of Code Base.
This commit is contained in:
Mario Steele 2025-06-12 14:31:14 -05:00
parent 293b1213e1
commit c11a4ebbc2
653 changed files with 36893 additions and 1 deletions

View file

@ -0,0 +1,16 @@
extends RefCounted
## Response of the inital device code request
var device_code: String;
var expires_in: int;
var interval: int;
var user_code: String;
var verification_uri: String;
func _init(json: Dictionary):
device_code = json["device_code"];
expires_in = int(json["expires_in"]);
interval = int(json["interval"]);
user_code = json["user_code"];
verification_uri = json["verification_uri"];