aboutsummaryrefslogtreecommitdiff
path: root/src/main.adb
blob: ba6e79bd9e36e24663ee23c9dd269e76cb9ecbdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25


--  Programmed by Jedidiah Barber
--  Licensed under the Sunset License v1.0

--  See license.txt for further details


with

    FLTK,
    Sokoban;


function Main
    return Integer is
begin

    Sokoban.Load_Level (Sokoban.LevelID'First);
    Sokoban.Show;
    return FLTK.Run;

end Main;