prepared engine swap

This commit is contained in:
2023-12-18 21:01:27 +01:00
parent 83e363f7c7
commit 1b3b8666d3
3098 changed files with 446024 additions and 0 deletions

View File

@ -0,0 +1,18 @@
from godot import exposed, export
from godot import *
@exposed
class helloworld(Node):
# member variables here, example:
a = export(int)
b = export(str, default='foo')
def _ready(self):
print("hello world")
"""
Called every time the node is added to the scene.
Initialization here.
"""
pass