supertux
integrations_menu.hpp
1 // SuperTux
2 // Copyright (C) 2004 Tobas Glaesser <tobi.web@gmx.de>
3 // Copyright (C) 2006 Matthias Braun <matze@braunis.de>
4 // Copyright (C) 2020 A. Semphris <semphris@protonmail.com>
5 //
6 // This program is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program. If not, see <http://www.gnu.org/licenses/>.
18 
19 #ifndef HEADER_SUPERTUX_SUPERTUX_MENU_INTEGRATIONS_MENU_HPP
20 #define HEADER_SUPERTUX_SUPERTUX_MENU_INTEGRATIONS_MENU_HPP
21 
22 #include "gui/menu.hpp"
23 
24 class IntegrationsMenu final : public Menu
25 {
26 public:
28  ~IntegrationsMenu() override;
29 
30  void menu_action(MenuItem& item) override;
31 
32 private:
33  IntegrationsMenu(const IntegrationsMenu&) = delete;
34  IntegrationsMenu& operator=(const IntegrationsMenu&) = delete;
35 };
36 
37 #endif
38 
39 /* EOF */
Definition: integrations_menu.hpp:24
Definition: menu_item.hpp:23
Definition: menu.hpp:55