iw5-mod/src/launcher/launcher.cpp
2018-12-23 13:17:08 +01:00

13 lines
164 B
C++

#include <std_include.hpp>
#include "launcher.hpp"
launcher::launcher() : window_("Open-IW5", 300, 400)
{
}
void launcher::run() const
{
this->window_.run();
}