forked from teamnwah/openmw-tes3coop
16 lines
271 B
C++
16 lines
271 B
C++
#include "common.cpp"
|
|
|
|
#include "../servers/sdl_driver.hpp"
|
|
#include <SDL.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
SDL_Init(SDL_INIT_VIDEO);
|
|
SDL_SetVideoMode(640, 480, 0, SDL_SWSURFACE);
|
|
input = new SDLDriver();
|
|
|
|
mainLoop(argc, SDLK_q);
|
|
|
|
SDL_Quit();
|
|
return 0;
|
|
}
|