Implemented the reveal/hide solution functionality
[getaclue.git] / getaclue_player
1 #!/usr/bin/env python
2
3 # Get A Clue (C) 2010 V. Harishankar
4 # Crossword puzzle maker program
5 # Licensed under the GNU GPL v3
6
7 # GetAClue player main script
8
9 import sys
10 import player_mainwindow
11
12 # if file is given as argument load the puzzle
13 if len (sys.argv) > 1:
14 player_mainwindow.MainWindow (sys.argv[1])
15 else:
16 player_mainwindow.MainWindow ()