summaryrefslogtreecommitdiff
path: root/Source/Android/jni/GameList/GameFile.h
blob: bbf6ca099ea2d3882081d4e99275a3790294c140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2018 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <memory>
#include <string>

#include <jni.h>

namespace UICommon
{
class GameFile;
}

jobject GameFileToJava(JNIEnv* env, std::shared_ptr<const UICommon::GameFile> game_file);