aboutsummaryrefslogtreecommitdiff
path: root/client/global.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/global.gd')
-rw-r--r--client/global.gd10
1 files changed, 0 insertions, 10 deletions
diff --git a/client/global.gd b/client/global.gd
index f308f847..c7ee555e 100644
--- a/client/global.gd
+++ b/client/global.gd
@@ -220,16 +220,6 @@ func array_has_all(parent: Array, children: Array) -> bool:
return false
return true
-# TODO orphan
-class ParsedItem:
- var name: String
- var contents: Array
-
- func _init(full_name: String):
- var c = Array(full_name.split(":"))
- name = c[0]
- contents = c[1].split(",") if c.size() > 1 else []
-
func configure_viewport_aa(vp: Viewport, aa: String) -> void:
match aa:
"disabled":