-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
20 lines (16 loc) · 953 Bytes
/
main.py
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. #
# #
#################################################################################
from interface import *
interface = Interface(800, 600, "Projeto PyStar - http://github.com/Cayan/PyStar/")
while True:
if not interface.update():
interface.onExit()
sys.exit()
break