//standard includes
#include <stdio.h>
#include <iostream>
#include <stdlib.h>
//any system includes other than standard
#include <SDL/SDL.h>
//personal includes
#include "mainengine.h"
SDL_Surface * screen;
int main(int argc, char *argv[])
{
//startup system
CEMain mainmap(screen,640,480,32);
printf("Shutting down fully...\n");
//have to include, unless you want problems >.<
atexit(SDL_Quit);
return EXIT_SUCCESS;
}