Files
crystall-punk-14/Content.Shared/_CP14/ResearchTable/CP14SharedResearchSystem.cs
Red 4be22326ce Gods part 6 (#1425)
* Skill scanning + bugfixes

* memory point examining

* Update base.yml

* predict skill examining

* moon beam lumera action

* balance
2025-06-15 01:50:16 +03:00

20 lines
501 B
C#

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;
}