#include <acknex.h>
#include <default.c>
function main() // Main function, includes screen resolution and color.
{
video_mode = 7;
screen_colour.blue = 150;
}
function quit game(); // The function that quits the game.
{
while (key_any) {wait(1);}
sys_exit (NULL);
}
//Panels and buttons.
PANEL* background =
{
bmap = "background.bmp";
pos_x = 0;
pos_y = 0;
layer = 1;
flags OVERLAY | VISIBLE
}