1
0

PlayTimeTrackerPrototype.cs 348 B

123456789101112
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Shared.Players.PlayTimeTracking;
  3. /// <summary>
  4. /// Given to a role to specify its ID for role-timer tracking purposes. That's it.
  5. /// </summary>
  6. [Prototype]
  7. public sealed partial class PlayTimeTrackerPrototype : IPrototype
  8. {
  9. [IdDataField] public string ID { get; private set; } = default!;
  10. }