OSDN Git Service

[Refactor] #40467 Separated mutation-info.c/h from self-info.c
[hengband/hengband.git] / src / player-info / self-info-util.h
1 #pragma once
2
3 #include "system/angband.h"
4 #include "system/object-type-definition.h"
5
6 typedef struct self_info_type {
7     int line;
8     char v_string[8][128];
9     char s_string[6][128];
10     BIT_FLAGS flags[TR_FLAG_SIZE];
11     object_type *o_ptr;
12     char plev_buf[80];
13     char buf[2][80];
14     concptr info[220];
15 } self_info_type;
16
17 self_info_type *initialize_self_info_type(self_info_type *si_ptr);