mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
28 lines
763 B
C#
28 lines
763 B
C#
|
using System;
|
||
|
using static System.Buffers.Binary.BinaryPrimitives;
|
||
|
|
||
|
namespace PKHeX.Core;
|
||
|
|
||
|
public sealed class PlayTime9 : SaveBlock<SAV9SV>
|
||
|
{
|
||
|
public PlayTime9(SAV9SV sav, SCBlock block) : base(sav, block.Data) { }
|
||
|
|
||
|
public int PlayedHours
|
||
|
{
|
||
|
get => ReadInt32LittleEndian(Data.AsSpan(Offset));
|
||
|
set => WriteInt32LittleEndian(Data.AsSpan(Offset), (ushort)value);
|
||
|
}
|
||
|
|
||
|
public int PlayedMinutes
|
||
|
{
|
||
|
get => ReadInt32LittleEndian(Data.AsSpan(Offset + 4));
|
||
|
set => WriteInt32LittleEndian(Data.AsSpan(Offset + 4), (ushort)value);
|
||
|
}
|
||
|
|
||
|
public int PlayedSeconds
|
||
|
{
|
||
|
get => ReadInt32LittleEndian(Data.AsSpan(Offset + 8));
|
||
|
set => WriteInt32LittleEndian(Data.AsSpan(Offset + 8), (ushort)value);
|
||
|
}
|
||
|
}
|