Delta-v/Content.Server/Power/Pow3r/NoOpSolver.cs

11 lines
220 B
C#

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