mirror of
https://github.com/Steffo99/hella-farm.git
synced 2024-11-22 08:04:23 +00:00
12 lines
199 B
GDScript3
12 lines
199 B
GDScript3
|
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
|