forked from eyeonus/Trade-Dangerous
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tradegui.py
24 lines (19 loc) · 788 Bytes
/
tradegui.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python3
# --------------------------------------------------------------------
# Copyright (C) Oliver 'kfsone' Smith 2014 <oliver@kfs.org>:
# Copyright (C) Bernd 'Gazelle' Gollesch 2016, 2017
# Copyright (C) Jonathan 'eyeonus' Jones 2018, 2019
#
# You are free to use, redistribute, or even print and eat a copy of
# this software so long as you include this copyright notice.
# I guarantee there is at least one bug neither of us knew about.
# --------------------------------------------------------------------
# TradeDangerous :: GUI App :: Main Module
#
# This is the main entry point into the native TD GUI.
# tkinter is a requirement to use the GUI.
from tradedangerous import gui
def main(argv = None):
gui.main()
if __name__ == "__main__":
gui.main()