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

25 lines
409 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
#include "steamapi.h"
#include "launchercore.h"
SteamAPI::SteamAPI(QObject *parent)
: QObject(parent)
{
2023-12-20 19:36:59 -05:00
// TODO: stub
}
void SteamAPI::setLauncherMode(bool isLauncher)
{
2023-07-30 10:34:22 -04:00
Q_UNUSED(isLauncher)
2023-12-20 19:36:59 -05:00
// TODO: stub
}
bool SteamAPI::isDeck() const
{
2023-12-20 19:36:59 -05:00
// TODO: stub
return false;
}