PlayTimeTrackingShared.cs 640 B

123456789101112131415161718
  1. using Content.Shared.Dataset;
  2. namespace Content.Shared.Players.PlayTimeTracking;
  3. public static class PlayTimeTrackingShared
  4. {
  5. /// <summary>
  6. /// The prototype ID of the play time tracker that represents overall playtime, i.e. not tied to any one role.
  7. /// </summary>
  8. [ValidatePrototypeId<PlayTimeTrackerPrototype>]
  9. public const string TrackerOverall = "Overall";
  10. /// <summary>
  11. /// The prototype ID of the play time tracker that represents admin time, when a player is in game as admin.
  12. /// </summary>
  13. [ValidatePrototypeId<PlayTimeTrackerPrototype>]
  14. public const string TrackerAdmin = "Admin";
  15. }