ReactiveGroupPrototype.cs 235 B

12345678910
  1. using Robust.Shared.Prototypes;
  2. namespace Content.Shared.Chemistry.Reaction;
  3. [Prototype]
  4. public sealed partial class ReactiveGroupPrototype : IPrototype
  5. {
  6. [IdDataField]
  7. public string ID { get; private set; } = default!;
  8. }