pollen-not-included/addons/gdUnit4/src/GdUnitValueExtractor.gd
2024-05-02 09:36:31 +01:00

9 lines
239 B
GDScript

## This is the base interface for value extraction
class_name GdUnitValueExtractor
extends RefCounted
## Extracts a value by given implementation
func extract_value(value):
push_error("Uninplemented func 'extract_value'")
return value