view scripts/sypikslang @ 209:5ca97ed09738

rat mission
author Neil Muller <drnlmuller@gmail.com>
date Sat, 12 May 2012 19:52:29 +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()