Minecraft-Console-Client/MinecraftClient/Inventory/VillagerInfo.cs

14 lines
336 B
C#
Raw Normal View History

namespace MinecraftClient.Inventory
{
/// <summary>
/// Properties of a villager
/// </summary>
public record VillagerInfo
{
public int Level { get; set; }
public int Experience { get; set; }
public bool IsRegularVillager { get; set; }
public bool CanRestock { get; set; }
}
}