mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2026-01-01 04:05:03 +01:00
18 lines
672 B
XML
18 lines
672 B
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" />
|
|
</fragment>
|
|
|
|
</navigation>
|