Freeciv21
Develop your civilization from humble roots to a global empire
unit_quick_menu.h
Go to the documentation of this file.
1 /*
2  * SPDX-FileCopyrightText: 2023 Louis Moureaux <m_louis30@yahoo.com>
3  *
4  * SPDX-License-Identifier: GPLv3-or-later
5  */
6 
7 #include <vector>
8 
9 class QMenu;
10 
11 struct unit;
12 
13 namespace freeciv {
14 
15 void add_quick_unit_actions(QMenu *menu, const std::vector<unit *> &units);
16 
17 } // namespace freeciv
Definition: path.cpp:10
void add_quick_unit_actions(QMenu *menu, const std::vector< unit * > &units)
Adds a small set of common unit actions to a menu.
Definition: unit.h:134