aboutsummaryrefslogtreecommitdiff
path: root/src/app/app.hpp
blob: cafb86462444480a8410c16a9305bcc903e7d315 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "app/options.hpp"

class App
{
public:
	explicit App(const AppOptions &options);

	void run();

private:
	const AppOptions &_options;
};