mirror of
https://github.com/Steffo99/hella-farm.git
synced 2025-02-16 17:13:58 +00:00
11 lines
199 B
GDScript
11 lines
199 B
GDScript
extends Node
|
|
class_name Sampler
|
|
|
|
|
|
## Abstract base class for sampling a certain reference among multiple.
|
|
|
|
|
|
## Get a reference.
|
|
func sample() -> Object:
|
|
Log.e(self, "Not implemented.")
|
|
return null
|