2025-02-03 17:50:33 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "commands.hpp"
|
|
|
|
|
|
|
|
namespace cellar {
|
|
|
|
namespace steam {
|
|
|
|
extern std::vector<std::string> find_steam_libraries();
|
2025-06-22 22:40:46 -07:00
|
|
|
extern std::map<std::string, std::string> find_steam_protons();
|
2025-02-03 17:50:33 -08:00
|
|
|
}
|
|
|
|
}
|