summaryrefslogtreecommitdiff
path: root/src/gui_main.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui_main.adb')
-rw-r--r--src/gui_main.adb16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gui_main.adb b/src/gui_main.adb
new file mode 100644
index 0000000..914093f
--- /dev/null
+++ b/src/gui_main.adb
@@ -0,0 +1,16 @@
+
+
+with
+
+ Deck_Convert_GUI,
+ FLTK;
+
+
+function GUI_Main
+ return Integer is
+begin
+ Deck_Convert_GUI.Show;
+ return FLTK.Run;
+end GUI_Main;
+
+