mirror of
https://port.numenaute.org/aleajactaest/khanat-client.git
synced 2024-11-10 01:10:05 +00:00
10 lines
127 B
GDScript3
10 lines
127 B
GDScript3
|
extends Node
|
||
|
class_name Item
|
||
|
|
||
|
var label = ""
|
||
|
|
||
|
|
||
|
func from_dict( datas ):
|
||
|
|
||
|
self.label = datas.get( "label", self.label )
|