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