mkxp-sunshine/src/steam.h
2016-02-29 01:41:37 -05:00

27 lines
375 B
C++

#ifndef STEAM_H
#define STEAM_H
#include <string>
struct SteamPrivate;
class Steam
{
public:
void unlock(const char *name);
void lock(const char *name);
bool isUnlocked(const char *name);
const std::string &userName() const;
const std::string &lang() const;
private:
Steam();
~Steam();
friend struct SharedStatePrivate;
SteamPrivate *p;
};
#endif // STEAM_H