mirror of
https://github.com/Relintai/godot-mono-builds.git
synced 2024-11-14 10:27:25 +01:00
9 lines
152 B
Python
9 lines
152 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
from desktop import run_main
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
from sys import argv
|
||
|
run_main(argv[1:], target_platform='windows')
|