Began working on the player application
[getaclue.git] / getaclue_player
diff --git a/getaclue_player b/getaclue_player
new file mode 100755 (executable)
index 0000000..f13b52d
--- /dev/null
@@ -0,0 +1,16 @@
+#!/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 ()
\ No newline at end of file