mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-06 01:33:10 +02:00
Don't show worldName if it is unknown; Fixes the name of the last world being used when switching to Serverless.
37 lines
810 B
C++
37 lines
810 B
C++
//
|
|
// DiscordRichPresence.h
|
|
// interface/src
|
|
//
|
|
// Created by Julian Groß on 30th October 2023.
|
|
// Copyright 2023 Overte e.V.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#ifndef overte_DiscordPresence_h
|
|
#define overte_DiscordPresence_h
|
|
|
|
#include "discord_rpc.h"
|
|
#include <QtCore/QLoggingCategory>
|
|
#include <QtCore/QObject>
|
|
|
|
Q_DECLARE_LOGGING_CATEGORY(discord_rich_presence)
|
|
|
|
class DiscordPresence : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
DiscordPresence();
|
|
static void shutdown();
|
|
|
|
public slots:
|
|
void domainChanged();
|
|
void vrChanged(bool isHMDMode);
|
|
|
|
private:
|
|
QString currentDomainID;
|
|
DiscordRichPresence discordPresence{};
|
|
};
|
|
|
|
#endif
|