AxibugEmuOnline/AxibugEmuOnline.Client/Assets/VirtualNes.Core/Mapper/Mapper.cs

14 lines
260 B
C#
Raw Normal View History

2024-07-23 18:31:59 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VirtualNes.Core
{
2024-07-25 11:03:58 +08:00
public abstract class Mapper
2024-07-23 18:31:59 +08:00
{
2024-07-25 11:03:58 +08:00
internal virtual void Clock(int cycles) { }
2024-07-23 18:31:59 +08:00
}
}