gdnative_python/tests/helloworld/main.py

11 lines
211 B
Python
Raw Normal View History

2023-06-02 11:13:10 +02:00
from pandemonium import exposed
from pandemonium.bindings import Node, OS
@exposed
class Main(Node):
def _ready(self):
2023-06-02 11:13:10 +02:00
# Exit pandemonium
OS.set_exit_code(0)
self.get_tree().quit()