Subversion Repositories sssnakesss

Rev

Rev 1 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#include "SDL/SDL.h"
#include "SDL/SDL_image.h"
#include "SDL/SDL_opengl.h"

#include <dirent.h>
#include <iostream>
#include <vector>
#include <map>

using namespace std;

#include "point.hpp"
#include "snake.hpp"
#include "texture.hpp"
#include "sssnakesss.hpp"

int main(int argc, char *argv[])
{
    SSSNAKESSS game;
    if (game.init())
    {
        game.run();
        game.end();
    }
   
    return 0;
}