cellar/include/steam.hpp

11 lines
249 B
C++
Raw Normal View History

2025-01-20 15:42:44 -08:00
#pragma once
#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);
extern std::map<std::string, cellar::bottles::Bottle> get_app_bottles();
2025-01-20 15:42:44 -08:00
}
}