перенос файлов клиента из папки White в _White
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user