using Content.Shared.Mind.Components;
namespace Content.Shared.Mind;
public partial class SharedMindSystem
{
///
/// Set whether or not to show examine information about the mind. Used to obscure if a mind is SSD or not.
///
/// Entity to set the mind examine info for.
/// True to show examine information, false to hide it.
public void ShowExamineInfo(EntityUid uid, bool showExamineInfo)
{
if (!TryComp(uid, out var mindContainer))
return;
mindContainer.ShowExamineInfo = showExamineInfo;
Dirty(uid, mindContainer);
}
}