Minecraft-Console-Client/MinecraftClient/Inventory/VillagerInfo.cs
2022-12-06 15:50:17 +08:00

13 lines
335 B
C#

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