2023-08-05 22:14:05 -04:00
|
|
|
// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-09-05 15:43:15 -04:00
|
|
|
#include "steamapi.h"
|
|
|
|
|
2023-07-30 08:49:34 -04:00
|
|
|
#include "launchercore.h"
|
|
|
|
|
2023-10-11 13:29:32 -04:00
|
|
|
SteamAPI::SteamAPI(QObject *parent)
|
2023-07-30 08:49:34 -04:00
|
|
|
: QObject(parent)
|
|
|
|
{
|
2023-12-20 19:36:59 -05:00
|
|
|
// TODO: stub
|
2023-10-08 17:55:13 -04:00
|
|
|
}
|
|
|
|
|
2023-07-30 08:49:34 -04:00
|
|
|
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
|
2022-09-06 11:00:53 -04:00
|
|
|
}
|
|
|
|
|
2023-07-30 08:49:34 -04:00
|
|
|
bool SteamAPI::isDeck() const
|
|
|
|
{
|
2023-12-20 19:36:59 -05:00
|
|
|
// TODO: stub
|
2022-09-06 11:00:53 -04:00
|
|
|
return false;
|
|
|
|
}
|