Files
crystall-punk-14/Content.Shared/_CP14/ResearchTable/CP14SharedResearchSystem.cs

20 lines
501 B
C#
Raw Normal View History

using Content.Shared._CP14.Skill.Prototypes;
using Content.Shared.DoAfter;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization;
namespace Content.Shared._CP14.ResearchTable;
public abstract class CP14SharedResearchSystem : EntitySystem
{
}
[Serializable, NetSerializable]
public sealed partial class CP14ResearchDoAfterEvent : DoAfterEvent
{
[DataField(required: true)]
public ProtoId<CP14SkillPrototype> Skill = default!;
public override DoAfterEvent Clone() => this;
}