1// LAF OS Library
2// Copyright (C) 2019 Igara Studio S.A.
3//
4// This file is released under the terms of the MIT license.
5// Read LICENSE.txt for more information.
6
7#ifndef OS_APP_MODE_H_INCLUDED
8#define OS_APP_MODE_H_INCLUDED
9#pragma once
10
11namespace os {
12
13 enum class AppMode { CLI, GUI };
14
15} // namespace os
16
17#endif
18