/
githubmirror
/
yuzu
Обзор
Документация
Войти
/
githubmirror
/
yuzu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/common/linux/gamemode.h
24 строки
608 B
flodavid
yuzu: create linux group in general settings
25 ноя 2023, 21:30
25 ноя 2023, 21:30
40644d4
Код
Авторство
О чём код?
// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once namespace Common::Linux { /** * Start the (Feral Interactive) Linux gamemode if it is installed and it is activated */ void StartGamemode(); /** * Stop the (Feral Interactive) Linux gamemode if it is installed and it is activated */ void StopGamemode(); /** * Start or stop the (Feral Interactive) Linux gamemode if it is installed and it is activated * @param state The new state the gamemode should have */ void SetGamemodeState(bool state); } // namespace Common::Linux