9 lines
164 B
GDScript
9 lines
164 B
GDScript
extends Node
|
|
|
|
var langs : Dictionary = {
|
|
"en-US": "res://Language/locale/en-US.gd"
|
|
}
|
|
|
|
func loadLanguage():
|
|
return load(langs[MainGame.loadedLanguage]).new().keys
|