File: building.h

package info (click to toggle)
craft 3.5-10
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 18,000 kB
  • ctags: 1,602
  • sloc: cpp: 3,794; makefile: 2,319; ansic: 857; sh: 385
file content (13 lines) | stat: -rw-r--r-- 429 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef building_h
#define building_h

int   building_pic   (int type, int dx, int dy, int state);
int   docks_pic      (int dir,  int dx, int dy, int state);
int   docks_ship_pic (int dir,  int dx, int dy, int state);
int   docks_site_pic (int dir,  int dx, int dy, int state);
int   docks_dir      (int x0, int y0);
char *building_name  (int type);
bool  is_building    (int type);
bool  is_building    (int x, int y);

#endif