forked from bvschaik/julius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhouses.h
42 lines (37 loc) · 854 Bytes
/
houses.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef CITY_HOUSES_H
#define CITY_HOUSES_H
typedef struct {
struct {
int well;
int fountain;
int entertainment;
int more_entertainment;
int education;
int more_education;
int religion;
int second_religion;
int third_religion;
int barber;
int bathhouse;
int clinic;
int hospital;
int food;
int second_wine;
} missing;
struct {
int school;
int library;
int barber;
int bathhouse;
int clinic;
int religion;
} requiring;
int health;
int religion;
int education;
int entertainment;
} house_demands;
void city_houses_reset_demands(void);
house_demands *city_houses_demands(void);
void city_houses_calculate_culture_demands(void);
#endif // CITY_HOUSES_H