#ifndef _OBJ_RING_H_5758d555_ #define _OBJ_RING_H_5758d555_ #include "structs.h" /* * APIs exported by obj-ring.c. */ /* * Remove all rings a monster is wearing. Does nothing with any * inventories. */ extern void ring_remove_all(MONST *); /* * The P (put on a ring) command. */ extern void ring_put(MONST *, OBJ *); /* * The R (remove a ring) command. */ extern void ring_remove(MONST *, OBJ *); /* * Return whether a ring is being worn (true) or not (false). */ extern int ring_being_worn(OBJ *); #endif