document dice options
This commit is contained in:
parent
1497806074
commit
5c3f973f2c
14
lib/dice.h
14
lib/dice.h
@ -36,8 +36,22 @@ typedef struct {
|
|||||||
} dice_result_t;
|
} dice_result_t;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
|
/* The amount of dice to roll.
|
||||||
|
* get: uint32_t
|
||||||
|
* set: uint32_t *
|
||||||
|
*/
|
||||||
DICEOPTION_AMOUNT = 0,
|
DICEOPTION_AMOUNT = 0,
|
||||||
|
|
||||||
|
/* The sides the dice have.
|
||||||
|
* get: uint32_t
|
||||||
|
* set: uint32_t *
|
||||||
|
*/
|
||||||
DICEOPTION_SIDES,
|
DICEOPTION_SIDES,
|
||||||
|
|
||||||
|
/* The error that as occoured when parsing dice strings.
|
||||||
|
* get: char **
|
||||||
|
* set: char const *
|
||||||
|
*/
|
||||||
DICEOPTION_ERROR,
|
DICEOPTION_ERROR,
|
||||||
} dice_option_t;
|
} dice_option_t;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user