AxibugEmuOnline/AxibugEmuOnline.Client/Assets/MyNes.Core/IRom.cs
2024-07-22 13:09:27 +08:00

35 lines
787 B
C#

using Unity.IL2CPP.CompilerServices;
namespace MyNes.Core
{
[Il2CppSetOption(Option.NullChecks, false)]
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
public abstract class IRom
{
public bool IsValid { get; set; }
public int PRGCount { get; set; }
public int CHRCount { get; set; }
public int MapperNumber { get; set; }
public Mirroring Mirroring { get; set; }
public bool HasTrainer { get; set; }
public byte[] PRG { get; set; }
public byte[] CHR { get; set; }
public byte[] Trainer { get; set; }
public string SHA1 { get; set; }
public virtual void Load(string fileName, bool loadDumps)
{
}
}
}