Re-organize all projects (#4166)
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#nullable enable
|
||||
using Content.Server.Battery.Components;
|
||||
using Content.Server.Power.Components;
|
||||
using Content.Shared.Interaction;
|
||||
using Robust.Shared.GameObjects;
|
||||
|
||||
namespace Content.Server.PowerCell.Components
|
||||
{
|
||||
/// <summary>
|
||||
/// Recharges an entity with a <see cref="BatteryComponent"/>.
|
||||
/// </summary>
|
||||
[RegisterComponent]
|
||||
[ComponentReference(typeof(IActivate))]
|
||||
[ComponentReference(typeof(BaseCharger))]
|
||||
public sealed class PowerCellChargerComponent : BaseCharger
|
||||
{
|
||||
public override string Name => "PowerCellCharger";
|
||||
|
||||
protected override bool IsEntityCompatible(IEntity entity)
|
||||
{
|
||||
return entity.HasComponent<BatteryComponent>();
|
||||
}
|
||||
|
||||
protected override BatteryComponent GetBatteryFrom(IEntity entity)
|
||||
{
|
||||
return entity.GetComponent<BatteryComponent>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user