Added global time manager (#251)
* Added global time manager * Created IPlayTimeTrackingManager * adds default api link --------- Co-authored-by: Mona Hmiza <you@example.com> Co-authored-by: Valtos <valtos@spaces.ru>
This commit is contained in:
@@ -22,7 +22,7 @@ using Robust.Shared.Utility;
|
||||
namespace Content.Server.Players.PlayTimeTracking;
|
||||
|
||||
/// <summary>
|
||||
/// Connects <see cref="PlayTimeTrackingManager"/> to the simulation state. Reports trackers and such.
|
||||
/// Connects <see cref="IPlayTimeTrackingManager"/> to the simulation state. Reports trackers and such.
|
||||
/// </summary>
|
||||
public sealed class PlayTimeTrackingSystem : EntitySystem
|
||||
{
|
||||
@@ -31,7 +31,7 @@ public sealed class PlayTimeTrackingSystem : EntitySystem
|
||||
[Dependency] private readonly IPrototypeManager _prototypes = default!;
|
||||
[Dependency] private readonly IConfigurationManager _cfg = default!;
|
||||
[Dependency] private readonly MindSystem _minds = default!;
|
||||
[Dependency] private readonly PlayTimeTrackingManager _tracking = default!;
|
||||
[Dependency] private readonly IPlayTimeTrackingManager _tracking = default!;
|
||||
[Dependency] private readonly IAdminManager _adminManager = default!;
|
||||
|
||||
public override void Initialize()
|
||||
|
||||
Reference in New Issue
Block a user