repo.or.cz
/
pyvconv.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
connected rendercommands and gui in main.py
[pyvconv.git]
/
main.py
blob
eff196f4b54267c3d94b1b60da37db8b7dc0e4fb
1
#!/usr/bin/python
2
3
from
rendercommands
import
*
4
from
gui
import
*
5
6
def
main
():
7
commands
=
RenderCommands
()
8
MyGui
(
commands
)
9
10
if
__name__
==
"__main__"
:
11
main
()
12
13
14
15