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