mirror of
https://github.com/kwsch/NHSE.git
synced 2026-07-08 04:54:21 -05:00
most complex editor yet could be better if I did PictureBox'es instead of buttons, so I could put an image instead of just color ppl will have to document more on what each terrain looks like, maybe could show a pic of each terrain tile?
16 lines
689 B
C#
16 lines
689 B
C#
namespace NHSE.Core
|
|
{
|
|
/// <summary>
|
|
/// <inheritdoc cref="MainSaveOffsets"/>
|
|
/// </summary>
|
|
public class MainSaveOffsets11 : MainSaveOffsets
|
|
{
|
|
public override int Villager => 0x120;
|
|
public override int Patterns => 0x1D7310; // +0x20 from v1.0
|
|
public override int Terrain => Buildings - 0x24C00; // dunno where exactly it starts??? // +0x20 from v1.0
|
|
public override int Buildings => 0x2D0F1C; // +0x20 from v1.0
|
|
public override int Acres => 0x2D12B4; // +0x20 from v1.0
|
|
public override int TurnipExchange => 0x412060; // +0x7A0 from v1.0
|
|
public override int RecycleBin => 0xABDE70; // +0x1E70 from v1.0
|
|
}
|
|
} |