X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=src%2Fserver%2Fthing_actions.h;h=ebdd871f02724159368ab56f982b9560eeede0c7;hb=93d0d862f86d99062a59ab8bdca21f2ffeaf838a;hp=28857e773cd135a678ccb1da0cfabb90426de828;hpb=891ba8fbca53d920f6b3704827fa6b8aee737de4;p=plomrogue diff --git a/src/server/thing_actions.h b/src/server/thing_actions.h index 28857e7..ebdd871 100644 --- a/src/server/thing_actions.h +++ b/src/server/thing_actions.h @@ -1,4 +1,8 @@ /* src/server/thing_actions.h + * + * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 + * or any later version. For details on its copyright, license, and warranties, + * see the file NOTICE in the root directory of the PlomRogue source package. * * Actions that can be performed by living things / "actors". Note that apart * from the consequences described below, each action may also trigger log @@ -34,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. + */ +extern void hunger(struct Thing * t); + #endif