OSDN Git Service

[Refactor] #40483 Removed the inclusion of grid.h from rooms.h
[hengbandforosx/hengbandosx.git] / src / info-reader / parse-error-types.h
1 #pragma once
2
3 /*
4  * @details 2 - 4は使われなくなったので欠番
5  */
6 typedef enum parse_error_type {
7     PARSE_ERROR_NONE = 0,
8         PARSE_ERROR_GENERIC = 1,
9     PARSE_ERROR_INVALID_FLAG = 5,
10     PARSE_ERROR_UNDEFINED_DIRECTIVE = 6,
11     PARSE_ERROR_OUT_OF_MEMORY = 7,
12     PARSE_ERROR_OUT_OF_BOUNDS = 8,
13     PARSE_ERROR_TOO_FEW_ARGUMENTS = 9,
14     PARSE_ERROR_UNDEFINED_TERRAIN_TAG = 10,
15     PARSE_ERROR_MAX = 11,
16 } parse_error_type;