2018-11-04 15:53:27 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
struct faction;
|
2018-11-04 18:07:42 +01:00
|
|
|
struct order;
|
|
|
|
struct unit;
|
2018-11-04 15:53:27 +01:00
|
|
|
|
|
|
|
bool ucontact(const struct unit *u, const struct unit *u2);
|
2018-11-04 18:07:42 +01:00
|
|
|
void contact_unit(struct unit *u, const struct unit *c);
|
|
|
|
void contact_faction(struct unit * u, const struct faction * f);
|
|
|
|
int contact_cmd(struct unit * u, struct order * ord);
|