mirror of
https://github.com/Abdess/retroarch_system.git
synced 2026-04-13 12:22:33 -05:00
18 lines
472 B
Python
18 lines
472 B
Python
"""Exporter for RetroPie (System.dat format, same as RetroArch).
|
|
|
|
RetroPie 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 RetroPie System.dat format."""
|
|
|
|
@staticmethod
|
|
def platform_name() -> str:
|
|
return "retropie"
|