2026-02-19 03:53:04 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2026-02-19 03:42:19 +00:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2026-02-19 03:53:04 +00:00
|
|
|
#include <common/settings_common.h>
|
|
|
|
|
#include "common/common_types.h"
|
|
|
|
|
#include "common/settings_setting.h"
|
|
|
|
|
#include "common/settings_enums.h"
|
2026-02-19 03:42:19 +00:00
|
|
|
|
2026-02-19 03:53:04 +00:00
|
|
|
namespace IOSSettings {
|
|
|
|
|
struct Values {
|
|
|
|
|
Settings::Linkage linkage;
|
|
|
|
|
Settings::Setting<bool> touchscreen{linkage, true, "touchscreen", Settings::Category::Overlay};
|
2026-02-19 03:42:19 +00:00
|
|
|
};
|
|
|
|
|
|
2026-02-19 03:53:04 +00:00
|
|
|
extern Values values;
|
2026-02-19 03:42:19 +00:00
|
|
|
|
2026-02-19 03:53:04 +00:00
|
|
|
} // namespace IOSSettings
|