11 lines
241 B
C++
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);
|
|
}; |