#include <acknex.h>
#include <default.c>
PANEL* MainMenu =
{
pos_x = 0;
pos_y = 0;
layer = 1;
flags = OVERLAY | SHOW;
}
function main()
{
////////////////////////////////////////////////////////////////////
/* Initialization */
////////////////////////////////////////////////////////////////////
// PlayerData Player1;
MainMenu.pos_x = 400;
MainMenu.pos_y = 300;
mouse_mode = 1;
video_mode = 7;
level_load("./resources/maps/FPSTest1.wmb");
////////////////////////////////////////////////////////////////////
// Main Loop
////////////////////////////////////////////////////////////////////
while(1)
{
if(key_esc)
break;
wait(1);
}
}