OSDN Git Service

Reworded English description for the sniper's SP_DOUBLE ability.
[hengband/hengband.git] / src / mutation / mutation-util.c
1 #include "mutation/mutation-util.h"
2
3 glm_type *initialize_glm_type(glm_type *gm_ptr, MUTATION_IDX choose_mut)
4 {
5     gm_ptr->muta_class = NULL;
6     gm_ptr->muta_which = 0;
7     gm_ptr->muta_desc = "";
8     gm_ptr->muta_chosen = FALSE;
9     gm_ptr->choose_mut = choose_mut;
10     return gm_ptr;
11 }