mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 08:23:12 +00:00
fc754b346b
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces) Updates all the files, one less level of indentation. Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
32 lines
1.1 KiB
C#
32 lines
1.1 KiB
C#
using System;
|
|
using static System.Buffers.Binary.BinaryPrimitives;
|
|
|
|
namespace PKHeX.Core;
|
|
|
|
public sealed class SangoInfoBlock : SaveBlock<SAV6AO>
|
|
{
|
|
public SangoInfoBlock(SAV6AO SAV, int offset) : base(SAV) => Offset = offset;
|
|
|
|
private const uint EON_MAGIC = WC6.EonTicketConst;
|
|
|
|
public uint EonTicketReceivedMagic // 0x319B8
|
|
{
|
|
get => ReadUInt32LittleEndian(Data.AsSpan(Offset + 0x63B8));
|
|
set => WriteUInt32LittleEndian(Data.AsSpan(Offset + 0x63B8), value);
|
|
}
|
|
|
|
public string SecretBaseQRText // 0x319BC -- 17*u16
|
|
{
|
|
get => SAV.GetString(Data.AsSpan(Offset + 0x63BC, 36));
|
|
set => SAV.SetString(Data.AsSpan(Offset + 0x63BC, 36), value.AsSpan(), 0x10, StringConverterOption.ClearZero);
|
|
}
|
|
|
|
public uint EonTicketSendMagic // 0x319DE
|
|
{
|
|
get => ReadUInt32LittleEndian(Data.AsSpan(Offset + 0x63DE));
|
|
set => WriteUInt32LittleEndian(Data.AsSpan(Offset + 0x63DE), value);
|
|
}
|
|
|
|
public void ReceiveEon() => EonTicketReceivedMagic = EON_MAGIC;
|
|
public void EnableSendEon() => EonTicketSendMagic = EON_MAGIC;
|
|
}
|