mirror of
https://github.com/Relintai/gdnative_python.git
synced 2025-01-08 15:29:39 +01:00
11 lines
211 B
Python
11 lines
211 B
Python
from pandemonium import exposed
|
|
from pandemonium.bindings import Node, OS
|
|
|
|
|
|
@exposed
|
|
class Main(Node):
|
|
def _ready(self):
|
|
# Exit pandemonium
|
|
OS.set_exit_code(0)
|
|
self.get_tree().quit()
|