6
2026-01-24 12:49:55 +03:00

18 lines
378 B
C#

using Robust.Shared.Threading;
namespace Content.Server.Power.Pow3r
{
public sealed class NoOpSolver : IPowerSolver
{
public void Tick(float frameTime, PowerState state, IParallelManager parallel)
{
// Literally nothing.
}
public void Validate(PowerState state)
{
// Literally nothing.
}
}
}