Files
13 lines
324 B
C#
13 lines
324 B
C#
using Robust.Shared.Player;
|
|||
|
|||
namespace Content.Shared.Players.PlayTimeTracking;
|
|||
|
|||
public interface ISharedPlaytimeManager
|
|||
{
|
|||
/// <summary>
|
|||
/// Gets the playtimes for the session or an empty dictionary if none found.
|
|||
/// </summary>
|
|||
IReadOnlyDictionary<string, TimeSpan> GetPlayTimes(ICommonSession session);
|
|||
}
|
|||
|