test commit added godot files to perform routing tests

This commit is contained in:
2023-12-19 21:50:49 +01:00
parent 1b3b8666d3
commit a924d6b12e
11 changed files with 60 additions and 22 deletions

View File

@ -1,18 +0,0 @@
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