Files
tbd-station-14/Content.Shared/Players/PlayerDataExt.cs
2023-10-28 09:59:53 +11:00

30 lines
889 B
C#

using Robust.Shared.Player;
namespace Content.Shared.Players;
public static class PlayerDataExt
{
/// <summary>
/// Gets the correctly cast instance of content player data from an engine player data storage.
/// </summary>
public static ContentPlayerData? ContentData(this SessionData data)
{
return (ContentPlayerData?) data.ContentDataUncast;
}
/// <summary>
/// Gets the correctly cast instance of content player data from an engine player data storage.
/// </summary>
public static ContentPlayerData? ContentData(this ICommonSession session)
{
return session.Data.ContentData();
}
/// <summary>
/// Gets the mind that is associated with this player.
/// </summary>
public static EntityUid? GetMind(this ICommonSession session)
{
return session.Data.ContentData()?.Mind;
}
}