iw5-mod/src/launcher/launcher.hpp

14 lines
124 B
C++
Raw Normal View History

2018-12-23 07:17:08 -05:00
#pragma once
#include "window.hpp"
class launcher
{
public:
launcher();
void run() const;
private:
window window_;
};