- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
Latest commit
20 lines (16 loc) · 953 Bytes
/
Copy pathmain.py
File metadata and controls
20 lines (16 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#################################################################################
# #
# Main.py #
# #
#################################################################################
# #
# Esse arquivo contem o objeto da interface e coordena o loop principal. #
# #
#################################################################################
frominterfaceimport*
interface=Interface(800, 600, "Projeto PyStar - http://github.com/Cayan/PyStar/")
whileTrue:
ifnotinterface.update():
interface.onExit()
sys.exit()
break