File: light.h

package info (click to toggle)
overgod 1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,880 kB
  • sloc: ansic: 31,576; makefile: 22; sh: 10
file content (22 lines) | stat: -rw-r--r-- 226 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#define NO_LIGHTS 100

struct lightstruct
{
 int x;
 int y;
 int size;
 int type;

};

enum
{
LIGHT_NONE,
LIGHT_NORMAL

};

void reset_lights(void);
int add_light(int ltype, int lsize, int lx, int ly);