mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-19 10:08:16 +00:00
29 lines
711 B
C++
29 lines
711 B
C++
/*
|
|
Copyright (C) 2008 - 2024
|
|
by Mark de Wever <koraq@xs4all.nl>
|
|
Part of the Battle for Wesnoth Project https://www.wesnoth.org/
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY.
|
|
|
|
See the COPYING file for more details.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace gui2
|
|
{
|
|
/**
|
|
* Initializes the GUI subsystems.
|
|
*
|
|
* @note This function must be called before other parts of the UI engine
|
|
* are used.
|
|
*/
|
|
void init();
|
|
|
|
} // namespace gui2
|