AxibugEmuOnline/OtherCore/MyNes.Standard2/MyNes.Core/BlankJoypad.cs

10 lines
136 B
C#
Raw Normal View History

2024-07-24 15:03:33 +08:00
namespace MyNes.Core
{
internal class BlankJoypad : IJoypadConnecter
{
public override void Update()
{
}
}
}