mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-23 12:57:45 +00:00
25 lines
432 B
C++
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;
|
|
}
|