File: sector_map.h

package info (click to toggle)
craft 3.5-4
  • links: PTS
  • area: main
  • in suites: potato
  • size: 17,996 kB
  • ctags: 1,585
  • sloc: cpp: 3,793; makefile: 2,310; ansic: 839; sh: 385
file content (37 lines) | stat: -rw-r--r-- 543 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef sector_map_h
#define sector_map_h

#include "bool.h"
/*
#include "win.h"
*/
#include "cmap.h"
#include "buttons.h"
#include "craft.h"
#include "craft_def.h"
#include "formation.h"
#include "menu.h"

class sector_map
  {public :

   int s     [8];
   int l     [8];
   int ss    [8];
   int ll    [8];
   int sa    [8];
   int la    [8];
   int sid   [8][max_objects];
   int s_num [8];
   int lid   [8][max_objects];
   int l_num [8];

   sector_map  (int x, int y, int own_color);
   ~sector_map ();

   void print  ();


 };

#endif