mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
15 lines
288 B
C++
15 lines
288 B
C++
// Copyright 2022 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <jni.h>
|
|
|
|
namespace ControllerEmu
|
|
{
|
|
class NumericSettingBase;
|
|
}
|
|
|
|
class ControlReference;
|
|
|
|
jobject NumericSettingToJava(JNIEnv* env, ControllerEmu::NumericSettingBase* control);
|