mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 09:08:02 +00:00
11 lines
No EOL
456 B
C#
11 lines
No EOL
456 B
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public sealed class GameTime8 : SaveBlock
|
|
{
|
|
public GameTime8(SaveFile sav, int offset) : base(sav) => Offset = offset;
|
|
public uint SecondsToStart { get => BitConverter.ToUInt32(Data, 0x28); set => BitConverter.GetBytes(value).CopyTo(Data, 0x28); }
|
|
public uint SecondsToFame { get => BitConverter.ToUInt32(Data, 0x30); set => BitConverter.GetBytes(value).CopyTo(Data, 0x30); }
|
|
}
|
|
} |