pollen-not-included/addons/gdUnit4/test/resources/core/Person.gd
2024-05-02 09:36:31 +01:00

15 lines
198 B
GDScript

class_name Person
extends Resource
func name() -> String:
return "Hoschi"
func last_name() -> String:
return "Horst"
func age() -> int:
return 42
func street() -> String:
return "Route 66"