OSDN Git Service

c1adf94693c84980c4cfa58ced4804841f8e65d0
[hengbandforosx/hengbandosx.git] / src / mutation / mutation-util.h
1 #pragma once
2
3 #include "system/angband.h"
4
5 enum class MUTA;
6
7 typedef struct glm_type {
8     MUTA muta_which;
9     concptr muta_desc;
10     bool muta_chosen;
11     MUTATION_IDX choose_mut;
12 } glm_type;
13
14 glm_type *initialize_glm_type(glm_type *gm_ptr, MUTATION_IDX choose_mut);