перенос файлов клиента из папки White в _White

This commit is contained in:
Remuchi
2024-01-28 17:32:55 +07:00
parent c80b10a688
commit 21dbccfec9
139 changed files with 345 additions and 434 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;
}
}