blob: da380897f01475149cf353a5533ad8eb8492ae8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef STAR_DESKTOP_SERVICE_PC_STEAM_HPP
#define STAR_DESKTOP_SERVICE_PC_STEAM_HPP
#include "StarPlatformServices_pc.hpp"
namespace Star {
STAR_CLASS(SteamDesktopService);
class SteamDesktopService : public DesktopService {
public:
SteamDesktopService(PcPlatformServicesStatePtr state);
void openUrl(String const& url) override;
};
}
#endif
|