mirror of
https://github.com/kwsch/NHSE.git
synced 2026-07-08 13:04:27 -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
580 B
C#
16 lines
580 B
C#
namespace NHSE.Core
|
|
{
|
|
/// <summary>
|
|
/// <inheritdoc cref="MainSaveOffsets"/>
|
|
/// </summary>
|
|
public class MainSaveOffsets10 : MainSaveOffsets
|
|
{
|
|
public override int Villager => 0x110;
|
|
public override int Patterns => 0x1D72F0;
|
|
public override int Terrain => Buildings - 0x24C00; // dunno where exactly it starts???
|
|
public override int Buildings => 0x2D0EFC;
|
|
public override int Acres => 0x2D1294;
|
|
public override int TurnipExchange => 0x4118C0;
|
|
public override int RecycleBin => 0xABC000; // yep.
|
|
}
|
|
} |