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