feat: add exporters for lakka, retropie, emudeck, retrodeck, romm

This commit is contained in:
Abdessamad Derraz
2026-03-30 17:07:08 +02:00
parent 1ffc4f89ca
commit 0be68edad0
6 changed files with 598 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
"""Exporter for Lakka (System.dat format, same as RetroArch).
Lakka inherits RetroArch cores and uses the same System.dat format.
Delegates to systemdat_exporter for export and validation.
"""
from __future__ import annotations
from .systemdat_exporter import Exporter as SystemDatExporter
class Exporter(SystemDatExporter):
"""Export truth data to Lakka System.dat format."""
@staticmethod
def platform_name() -> str:
return "lakka"