mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-13 14:04:13 -05:00
15 lines
293 B
C#
15 lines
293 B
C#
namespace NHSE.Villagers
|
|
{
|
|
public class VillagerData
|
|
{
|
|
public readonly byte[] Villager;
|
|
public readonly byte[] House;
|
|
|
|
public VillagerData(byte[] villager, byte[] house)
|
|
{
|
|
Villager = villager;
|
|
House = house;
|
|
}
|
|
}
|
|
}
|