stick-the-quick/util/static_class.gd

9 lines
156 B
GDScript3
Raw Normal View History

2025-03-29 11:13:11 -07:00
class_name StaticClass extends Object
func _init() -> void:
push_error(
"%s is an instance of a static class, which is not allowed" %
self
)
free()