mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
synced 2025-05-12 00:45:25 +00:00
42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<?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" />
|
|
<argument
|
|
android:name="custom"
|
|
app:argType="boolean"
|
|
android:defaultValue="false" />
|
|
</fragment>
|
|
|
|
<activity
|
|
android:id="@+id/settingsActivity"
|
|
android:name="org.yuzu.yuzu_emu.features.settings.ui.SettingsActivity"
|
|
android:label="SettingsActivity">
|
|
<argument
|
|
android:name="game"
|
|
app:argType="org.yuzu.yuzu_emu.model.Game"
|
|
app:nullable="true" />
|
|
<argument
|
|
android:name="menuTag"
|
|
app:argType="org.yuzu.yuzu_emu.features.settings.model.Settings$MenuTag" />
|
|
</activity>
|
|
|
|
<action
|
|
android:id="@+id/action_global_settingsActivity"
|
|
app:destination="@id/settingsActivity" />
|
|
|
|
</navigation>
|