scummvm/engines/chamber/savegame.h

35 lines
1.1 KiB
C
Raw Normal View History

/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
2023-02-14 15:56:06 +01:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2023-02-14 15:56:06 +01:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef CHAMBER_SAVEGAME_H
#define CHAMBER_SAVEGAME_H
namespace Chamber {
2021-09-12 00:50:51 +02:00
2023-02-14 14:38:57 +01:00
int16 loadScena(void);
int16 saveScena(void);
void saveRestartGame(void);
void restartGame(void);
2021-09-12 00:50:51 +02:00
} // End of namespace Chamber
2021-09-12 00:50:51 +02:00
#endif