Files
tbd-station-14/Content.Server/Power/Pow3r/NoOpSolver.cs
2023-11-29 11:00:12 +11:00

13 lines
276 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.
}
}
}