summaryrefslogtreecommitdiff
path: root/client.gd
blob: b43941ad5d781bd7c6c00cf36f07a394aae752ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
extends Node


var account: Dictionary = {
	"id": "",
}

var character: Dictionary = {
	"name": "",
}


func _ready() -> void:
	var grf = GRF.open("res://data/data.grf")
	grf.convert()#"user://data")
	
	#Sprite.from_bytes(FileAccess.get_file_as_bytes("res://data/extracted/data/sprite/cursors.spr"))
	#ActionFormat.from_bytes(
		#ByteStream.from_bytes(
			#FileAccess.get_file_as_bytes("res://data/extracted/data/sprite/cursors.act")
		#)
	#)
	GATFormat.from_bytes(
		ByteStream.from_bytes(
			FileAccess.get_file_as_bytes("res://data/extracted/data/int_land02.gat")
		)
	)