Essgee.Unity/Assets/Plugins/Essgee/Emulation/Cartridges/Nintendo/IGameBoyCartridge.cs
2025-01-02 17:55:16 +08:00

14 lines
290 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Essgee.Emulation.Cartridges.Nintendo
{
public interface IGameBoyCartridge : ICartridge
{
void SetCartridgeConfig(bool battery, bool rtc, bool rumble);
}
}