pioneer/src/GameSaveError.h

13 lines
358 B
C

// Copyright © 2008-2021 Pioneer Developers. See AUTHORS.txt for details
// Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
#ifndef GAME_SAVE_ERROR_H
#define GAME_SAVE_ERROR_H
struct SavedGameCorruptException {};
struct SavedGameWrongVersionException {};
struct CouldNotOpenFileException {};
struct CouldNotWriteToFileException {};
#endif