#!/usr/bin/env python # Get A Clue (C) 2010 V. Harishankar # Crossword puzzle maker program # Licensed under the GNU GPL v3 # GetAClue player main script import sys import player_mainwindow # if file is given as argument load the puzzle if len (sys.argv) > 1: player_mainwindow.MainWindow (sys.argv[1]) else: player_mainwindow.MainWindow ()