forked from github/server
gcc/clang want structs to be defined before used in an argument list
This commit is contained in:
parent
2759114414
commit
bc8f8c74f9
|
@ -23,6 +23,10 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
struct faction;
|
||||||
|
struct region;
|
||||||
|
struct building;
|
||||||
/* leuchtturm */
|
/* leuchtturm */
|
||||||
bool check_leuchtturm(struct region *r, struct faction *f);
|
bool check_leuchtturm(struct region *r, struct faction *f);
|
||||||
void update_lighthouse(struct building *lh);
|
void update_lighthouse(struct building *lh);
|
||||||
|
|
Loading…
Reference in New Issue