gdnative_python/tests/work_with_gdscript/pynode_with_gdparent.py

10 lines
163 B
Python

from pandemonium import exposed, ResourceLoader
GDNode = ResourceLoader.load("res://gdnode.gd", "", False)
@exposed
class PyNodeWithGDParent(GDNode):
pass