mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
14 lines
333 B
C#
14 lines
333 B
C#
|
|
namespace MinecraftClient.Mapping
|
|||
|
|
{
|
|||
|
|
/// <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; }
|
|||
|
|
}
|
|||
|
|
}
|