ModernUO/Scripts/Engines/Party/PartyMemberInfo.cs
2018-09-14 08:46:14 -07:00

19 lines
No EOL
346 B
C#

namespace Server.Engines.PartySystem
{
public class PartyMemberInfo
{
private Mobile m_Mobile;
private bool m_CanLoot;
public Mobile Mobile => m_Mobile;
public bool CanLoot{ get => m_CanLoot;
set => m_CanLoot = value;
}
public PartyMemberInfo( Mobile m )
{
m_Mobile = m;
m_CanLoot = !Core.ML;
}
}
}