This commit is contained in:
2026-02-13 16:12:39 +01:00
parent 40e2167003
commit b646f5ca78
16 changed files with 984 additions and 33 deletions
@@ -8,7 +8,7 @@ struct villager{
char name[50];
int cur_HP;
int HP_max;
// struct gun;
struct gun *gun;
int gun_mastery;
int medicines;
enum distance distance;
@@ -23,6 +23,4 @@ void heal(struct villager *villager);
enum distance walk(struct villager *villager, int direction);
int prepare_medicine(struct villager *villager);
#endif