1
0
mirror of https://github.com/gryf/e-uae-wrapper.git synced 2026-05-11 07:42:58 +02:00
Files
e-uae-wrapper/script/e-uae-wrapper
T
2018-02-15 17:50:04 +01:00

17 lines
237 B
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Run e-uae emulator with some configuration goodies :)
"""
from e_uae_wrapper import wrapper
def main():
"""run wrapper"""
wrapper.run()
if __name__ == "__main__":
main()