1 /*
2  * Seven Kingdoms: Ancient Adversaries
3  *
4  * Copyright 1997,1998 Enlight Software Ltd.
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 2 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  */
20 
21 //Filename    : OFIRMID.H
22 //Description : Identity no. of all firm types
23 
24 #ifndef __OFIRMID_H
25 #define __OFIRMID_H
26 
27 //--------- Define no. of firms ------------//
28 
29 enum { MAX_FIRM_TYPE = 10 };
30 
31 //--- Define the firm id no. according to the order in FIRM.DBF ---//
32 
33 enum { FIRM_BASE=1,
34 		 FIRM_FACTORY,
35 		 FIRM_INN,
36 		 FIRM_MARKET,
37 		 FIRM_CAMP,
38 		 FIRM_MINE,
39 		 FIRM_RESEARCH,
40 		 FIRM_WAR_FACTORY,
41 		 FIRM_HARBOR,
42 		 FIRM_MONSTER,
43 	  };
44 
45 //------------------------------------------//
46 
47 #endif
48