mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 10:17:40 +02:00
quiet some warnings
This commit is contained in:
parent
9128d4b140
commit
1bcb5ceaff
1 changed files with 9 additions and 9 deletions
|
@ -19,19 +19,19 @@ class QUrl;
|
||||||
|
|
||||||
class SteamAPIPlugin : public SteamClientPlugin {
|
class SteamAPIPlugin : public SteamClientPlugin {
|
||||||
public:
|
public:
|
||||||
bool isRunning();
|
bool isRunning() override;
|
||||||
|
|
||||||
bool init();
|
bool init() override;
|
||||||
void shutdown();
|
void shutdown() override;
|
||||||
|
|
||||||
void runCallbacks();
|
void runCallbacks() override;
|
||||||
|
|
||||||
void requestTicket(TicketRequestCallback callback);
|
void requestTicket(TicketRequestCallback callback) override;
|
||||||
void updateLocation(QString status, QUrl locationUrl);
|
void updateLocation(QString status, QUrl locationUrl) override;
|
||||||
void openInviteOverlay();
|
void openInviteOverlay() override;
|
||||||
void joinLobby(QString lobbyId);
|
void joinLobby(QString lobbyId) override;
|
||||||
|
|
||||||
int getSteamVRBuildID();
|
int getSteamVRBuildID() override;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // hifi_SteamAPIPlugin_h
|
#endif // hifi_SteamAPIPlugin_h
|
||||||
|
|
Loading…
Reference in a new issue