X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;ds=sidebyside;f=src%2Fserver%2Fthing_actions.h;h=0f9b962401d63dffc1de74730505462419b67fa6;hb=3fb2cb493ae564f8b14ddb4143b6c1f5bf16f16a;hp=376e50434d0a928344d965f0addc96235a24e2ef;hpb=030c92e213af6bd6f01fb0a0683fea9a6feacb65;p=plomrogue diff --git a/src/server/thing_actions.h b/src/server/thing_actions.h index 376e504..0f9b962 100644 --- a/src/server/thing_actions.h +++ b/src/server/thing_actions.h @@ -38,6 +38,11 @@ extern void actor_pick(struct Thing * t); */ extern void actor_use(struct Thing * t); +/* Decrement "t"'s satiation and trigger a chance (dependent on over-/under- + * satiation value) of lifepoint decrement, when its type's .stomach is >0. + */ +extern void hunger(struct Thing * t); + #endif