1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-18 16:32:32 +02:00
openrw/rwgame/main.cpp
Daniel Evans 2ee4a6e533 Add configuration file to replace OPENRW_GAME_PATH env var
This will permit the storage of other user settings like language and
video settings.
2016-05-20 02:10:11 +01:00

10 lines
110 B
C++

#include "RWGame.hpp"
int main(int argc, char *argv[])
{
RWGame game( argc, argv );
return game.run();
}