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