2024-07-22 13:09:27 +08:00
|
|
|
using Unity.IL2CPP.CompilerServices;
|
|
|
|
|
2024-07-03 18:22:22 +08:00
|
|
|
namespace MyNes.Core
|
2024-07-03 18:15:28 +08:00
|
|
|
{
|
2024-07-22 13:09:27 +08:00
|
|
|
[Il2CppSetOption(Option.NullChecks, false)]
|
|
|
|
[Il2CppSetOption(Option.ArrayBoundsChecks, false)]
|
|
|
|
[Il2CppSetOption(Option.DivideByZeroChecks, false)]
|
2024-07-03 18:22:22 +08:00
|
|
|
public class BoardInfoObject
|
|
|
|
{
|
|
|
|
public string Name { get; internal set; }
|
2024-07-03 18:15:28 +08:00
|
|
|
|
2024-07-03 18:22:22 +08:00
|
|
|
public int MapperNumber { get; internal set; }
|
2024-07-03 18:15:28 +08:00
|
|
|
|
2024-07-03 18:22:22 +08:00
|
|
|
public bool IsSupported { get; internal set; }
|
2024-07-03 18:15:28 +08:00
|
|
|
|
2024-07-03 18:22:22 +08:00
|
|
|
public string Issues { get; internal set; }
|
2024-07-03 18:15:28 +08:00
|
|
|
|
2024-07-03 18:22:22 +08:00
|
|
|
public bool HasIssues { get; internal set; }
|
|
|
|
}
|
2024-07-03 15:40:13 +08:00
|
|
|
}
|