Skip to content

Commit

Permalink
base
Browse files Browse the repository at this point in the history
  • Loading branch information
M1and1B committed Aug 28, 2024
1 parent 30d5ef8 commit b2c8e97
Show file tree
Hide file tree
Showing 14 changed files with 1,245 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using Content.Shared.Supermatter.Components;
using Content.Shared.Supermatter.Systems;
using Robust.Shared.GameStates;

namespace Content.Client.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;
}
}
Loading

0 comments on commit b2c8e97

Please sign in to comment.