mirror of
https://github.com/kwsch/NHSE.git
synced 2026-08-07 10:14:37 -05:00
8 lines
233 B
C#
8 lines
233 B
C#
using System;
|
|
|
|
namespace NHSE.Villagers;
|
|
|
|
/// <summary>
|
|
/// Tuple-like record struct to hold villager and house memory segments.
|
|
/// </summary>
|
|
public readonly record struct VillagerData(Memory<byte> Villager, Memory<byte> House); |