feat: Перенос суперматерии

This commit is contained in:
Remuchi
2024-01-22 18:32:33 +07:00
parent 5900aadb93
commit 6d20951c5d
16 changed files with 1126 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
using Content.Shared.White.Supermatter.Components;
using Content.Shared.White.Supermatter.Systems;
using Robust.Shared.GameStates;
namespace Content.Client.White.Supermatter.Systems;
public sealed class SupermatterSystem : SharedSupermatterSystem
{
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent<SupermatterComponent, ComponentHandleState>(HandleSupermatterState);
}
private void HandleSupermatterState(EntityUid uid, SupermatterComponent comp, ref ComponentHandleState args)
{
if (args.Current is not SupermatterComponentState state)
return;
}
}