Some checks failed
Create tag and build when new code gets to main / Export (push) Failing after 6m41s
11 lines
162 B
GDScript
11 lines
162 B
GDScript
# base interface for assert value provider
|
|
class_name ValueProvider
|
|
extends RefCounted
|
|
|
|
func get_value() -> Variant:
|
|
return null
|
|
|
|
|
|
func dispose() -> void:
|
|
pass
|