Files
ASCII-G/include/save_manager.h

11 lines
241 B
C++

#pragma once
#include "player.h"
#include <string>
#include <vector>
class SaveManager {
public:
static bool saveGame(const Player& player, const std::string& path);
static bool loadGame(Player& player, const std::string& path);
};