34 lines
670 B
C++
34 lines
670 B
C++
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: main.cpp
|
|
*
|
|
* Description:
|
|
*
|
|
* Version: 1.0
|
|
* Created: 13/12/2014 20:49:00
|
|
* Revision: none
|
|
* Compiler: gcc
|
|
*
|
|
* Author: Quentin BAZIN, <quent42340@gmail.com>
|
|
* Company:
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
#include <iostream>
|
|
|
|
#include "Application.hpp"
|
|
#include "Exception.hpp"
|
|
#include "SDLLoader.hpp"
|
|
|
|
int main(int argc, char **argv) {
|
|
SDLLoader sdlLoader;
|
|
sdlLoader.load();
|
|
|
|
Application app(argc, argv);
|
|
app.run();
|
|
|
|
return 0;
|
|
}
|
|
|