2010-08-08 10:06:34 +02:00
|
|
|
#ifndef GATE_H
|
|
|
|
#define GATE_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-01-30 20:37:14 +01:00
|
|
|
/* all types we use are defined here to reduce dependencies */
|
|
|
|
struct trigger_type;
|
|
|
|
struct trigger;
|
|
|
|
struct region;
|
|
|
|
struct building;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
2015-01-30 20:37:14 +01:00
|
|
|
extern struct trigger_type tt_gate;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|