OSDN Git Service

[feature] ソースファイルをC++に対応
[hengbandforosx/hengbandosx.git] / src / save / save.h
1 #pragma once
2
3 #include "floor/floor-save.h"
4 #include "system/angband.h"
5
6 enum save_type {
7         SAVE_TYPE_CLOSE_GAME = 0,
8         SAVE_TYPE_CONTINUE_GAME = 1,
9         SAVE_TYPE_DEBUG = 2
10 };
11
12 bool save_player(player_type *player_ptr, save_type type);