mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-14 06:19:53 -05:00
17 lines
488 B
C#
17 lines
488 B
C#
namespace NHSE.Core
|
|
{
|
|
/// <summary>
|
|
/// <inheritdoc cref="MainSaveOffsets"/>
|
|
/// </summary>
|
|
public class MainSaveOffsets10 : MainSaveOffsets
|
|
{
|
|
public override int Villager => 0x110;
|
|
public override int RecycleBin => 0xABC000; // yep.
|
|
|
|
public override Villager ReadVillager(byte[] data, int index)
|
|
{
|
|
var v = data.Slice(Villager + (index * VillagerSize), VillagerSize);
|
|
return new Villager(v);
|
|
}
|
|
}
|
|
} |