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