summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/navigation/emulation_navigation.xml
blob: cd1d36a12a867dcdaf62bfbdc177a99c39e40974 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/emulation_navigation"
    app:startDestination="@id/emulationFragment">

    <fragment
        android:id="@+id/emulationFragment"
        android:name="org.yuzu.yuzu_emu.fragments.EmulationFragment"
        android:label="fragment_emulation"
        tools:layout="@layout/fragment_emulation" >
        <argument
            android:name="game"
            app:argType="org.yuzu.yuzu_emu.model.Game"
            app:nullable="true"
            android:defaultValue="@null" />
    </fragment>

</navigation>