mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
10 lines
142 B
GDScript
10 lines
142 B
GDScript
|
extends Theme
|
||
|
|
||
|
|
||
|
func get_class() -> String:
|
||
|
return "XrdbTheme"
|
||
|
|
||
|
|
||
|
func is_class(name) -> bool:
|
||
|
return name == get_class() or .is_class(name)
|