1 /***************************************************************************
2  *      Mechanized Assault and Exploration Reloaded Projectfile            *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18  ***************************************************************************/
19 
20 #ifndef ui_graphical_menu_widgets_special_unitdatasymboltypeH
21 #define ui_graphical_menu_widgets_special_unitdatasymboltypeH
22 
23 enum class eUnitDataSymbolType
24 {
25 	Speed,
26 	Hits,
27 	Ammo,
28 	Attack,
29 	Shots,
30 	Range,
31 	Armor,
32 	Scan,
33 	Metal,
34 	MetalEmpty,
35 	Oil,
36 	Gold,
37 	Energy,
38 	Human,
39 	TransportTank,
40 	TransportAir
41 };
42 
43 #endif // ui_graphical_menu_widgets_special_unitdatasymboltypeH
44