Files
tbd-station-14/Content.Server/Power/Pow3r/NoOpSolver.cs
2022-11-09 12:43:45 +11:00

11 lines
231 B
C#

namespace Content.Server.Power.Pow3r
{
public sealed class NoOpSolver : IPowerSolver
{
public void Tick(float frameTime, PowerState state, int parallel)
{
// Literally nothing.
}
}
}