import sys
from VIStk.Structures._VINFO import getPath
_proj = getPath()
if _proj and _proj not in sys.path:
    sys.path.insert(0, _proj)

from VIStk.Objects import Host

host = Host()
host.WindowGeometry.setGeometry(width=1200,height=800,align="center")
host.setIcon("<icon>")

while host.Active:
    host.tick_fps()
    host.update()
