14 lines
124 B
C++
14 lines
124 B
C++
|
#pragma once
|
||
|
#include "window.hpp"
|
||
|
|
||
|
class launcher
|
||
|
{
|
||
|
public:
|
||
|
launcher();
|
||
|
|
||
|
void run() const;
|
||
|
|
||
|
private:
|
||
|
window window_;
|
||
|
};
|