view scripts/sypikslang @ 248:25ea20b9803c

added schemes background
author Rizmari Versfeld <rizziepit@gmail.com>
date Sun, 13 May 2012 00:50:20 +0200
parents 7eead0d85497
children
line wrap: on
line source

#! /usr/bin/env python

import sys
import os.path


if '__file__' in globals():
    # Add ourselves to the path.
    # We protect against missing __file__ in Windows executable scripts
    # (in these cases, assume we are already on the path)
    sys.path.insert(0, os.path.dirname(os.path.dirname(__file__)))

from gamelib import main
main.main()