18 lines
500 B
C#
18 lines
500 B
C#
using Content.Shared.Silicons.Laws.Components;
|
|
using Robust.Shared.Containers;
|
|
|
|
namespace Content.Shared.Silicons.Laws;
|
|
|
|
public abstract partial class SharedSiliconLawSystem
|
|
{
|
|
private void InitializeUpdater()
|
|
{
|
|
SubscribeLocalEvent<SiliconLawUpdaterComponent, EntInsertedIntoContainerMessage>(OnUpdaterInsert);
|
|
}
|
|
|
|
protected virtual void OnUpdaterInsert(Entity<SiliconLawUpdaterComponent> ent, ref EntInsertedIntoContainerMessage args)
|
|
{
|
|
// TODO: Prediction
|
|
}
|
|
}
|