X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;ds=sidebyside;f=src%2Fserver%2Fthings.h;h=d5ef508a4aa5bd3034aa2e182d2ead9bd47265b3;hb=f2b4faf81054dacf93af35b5ff1fd14d3c966a55;hp=6f7d124bc414e3af0e04701b5cc675bcd97944c3;hpb=891ba8fbca53d920f6b3704827fa6b8aee737de4;p=plomrogue diff --git a/src/server/things.h b/src/server/things.h index 6f7d124..d5ef508 100644 --- a/src/server/things.h +++ b/src/server/things.h @@ -53,16 +53,16 @@ struct ThingAction * s[S_CMD_WAIT], .func to actor_wait() and .effort to 1. If "id" is not >= 1 * and <= UINT8_MAX, use lowest unused id. Return thing action. */ -extern struct ThingAction * add_thing_action(int16_t id); +extern struct ThingAction * add_thing_action(uint8_t id); -/* Add thing type of "id", with .corpse_id defaulting to "id" to - * world.thing_types, .name to "(none)" and the remaining values to 0. If "id" - * is not >= 0 and <= UINT8_MAX, use lowest unused id. Return thing type. +/* Add thing type of "id" to world.thing_types, with .corpse_id defaulting to + * the new thing type's .id, .name to "(none)" and the remaining values to 0. If + * "id" is not >= 0 and <= UINT8_MAX, use lowest unused id. Return thing type. */ extern struct ThingType * add_thing_type(int16_t id); -/* Add thing of "id" and "type" on position of "y"/x" to world.things.If "id" is - * not >= 0 and <= UINT8_MAX, use lowest unused id. Return thing. +/* Add thing of "id" and "type" on position of "y"/x" to world.things. If "id" + * is not >= 0 and <= UINT8_MAX, use lowest unused id. Return thing. */ extern struct Thing * add_thing(int16_t id, uint8_t type, uint8_t y, uint8_t x);