1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-23 04:57:44 +00:00
astra/launcher/src/steamapi.cpp

25 lines
432 B
C++

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#include "steamapi.h"
#include "astra_log.h"
#include "launchercore.h"
SteamAPI::SteamAPI(QObject *parent)
: QObject(parent)
{
// TODO: stub
}
void SteamAPI::setLauncherMode(bool isLauncher)
{
Q_UNUSED(isLauncher)
// TODO: stub
}
bool SteamAPI::isDeck() const
{
// TODO: stub
return false;
}