Add power sinks (#8020)

Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
This commit is contained in:
Veritius
2022-05-12 23:12:35 +10:00
committed by GitHub
parent 6cb2a01723
commit 656ec38f99
8 changed files with 133 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
namespace Content.Server.PowerSink
{
/// <summary>
/// Absorbs power up to its capacity when anchored then explodes.
/// </summary>
[RegisterComponent]
public sealed class PowerSinkComponent : Component {}
}