* Skill scanning + bugfixes * memory point examining * Update base.yml * predict skill examining * moon beam lumera action * balance
20 lines
501 B
C#
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;
|
|
}
|