mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +01:00
2ee4a6e533
This will permit the storage of other user settings like language and video settings.
10 lines
110 B
C++
10 lines
110 B
C++
#include "RWGame.hpp"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
|
|
RWGame game( argc, argv );
|
|
|
|
return game.run();
|
|
}
|