2025-01-20 15:42:44 -08:00
|
|
|
#pragma once
|
2025-01-27 16:51:54 -08:00
|
|
|
#include <map>
|
2025-01-20 15:42:44 -08:00
|
|
|
|
|
|
|
#include "bottles.hpp"
|
|
|
|
|
|
|
|
namespace cellar {
|
|
|
|
namespace steam {
|
|
|
|
extern cellar::bottles::Bottle app_bottle(unsigned appid);
|
2025-01-27 16:51:54 -08:00
|
|
|
extern std::map<std::string, cellar::bottles::Bottle> get_app_bottles();
|
2025-01-20 15:42:44 -08:00
|
|
|
}
|
|
|
|
}
|