public void LogEntity(string format, DirectEntity entity) { if (entity != null) { Log(string.Format(format, entity.Id, entity.Name, entity.CorpId, entity.AllianceId, entity.TypeName, entity.GivenName)); } }
private static void LogEntity(string format, DirectEntity entity) { if (entity == null) { return; } Log(format, "Id", entity.Id); Log(format, "OwnerId", entity.OwnerId); Log(format, "CorpId", entity.CorpId); Log(format, "AllianceId", entity.AllianceId); Log(format, "FollowId", entity.FollowId); Log(format, "IsNpc", entity.IsNpc); Log(format, "IsPc", entity.IsPc); Log(format, "TypeId", entity.TypeId); Log(format, "GroupId", entity.GroupId); Log(format, "TypeName", entity.TypeName); Log(format, "Name", entity.Name); Log(format, "GivenName", entity.GivenName); Log(format, "Distance", entity.Distance); Log(format, "Velocity", entity.Velocity); Log(format, "IsAttacking", entity.IsAttacking); Log(format, "IsCloaked", entity.IsCloaked); Log(format, "IsNeutralizingMe", entity.IsNeutralizingMe); Log(format, "IsJammingMe", entity.IsJammingMe); Log(format, "IsWebbingMe", entity.IsWebbingMe); Log(format, "IsSensorDampeningMe", entity.IsSensorDampeningMe); }
public EntityCache(DirectEntity entity) { _directEntity = entity; }