gdnative_python/tests/global_constants/global_py.py

12 lines
247 B
Python
Raw Permalink Normal View History

2023-06-02 11:13:10 +02:00
from pandemonium import Node, exposed, export, Array
@exposed
class global_py(Node):
accessors = export(Array, default=Array())
type = export(str, default="Python")
def set_accessed(self, name):
self.accessors.append(name)