blob: d83544eec99cf43497e026305a5b914a93999f8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com>
* SPDX-License-Identifier: LGPL-2.1-only
*/
#ifndef TURNS_GUI_INIT_HPP
#define TURNS_GUI_INIT_HPP
namespace Turns::gui
{
auto init() -> void;
} // namespace Turns::gui
#endif
|