Files
tbd-station-14/Content.Server/Power/Pow3r/NoOpSolver.cs
Pieter-Jan Briers 103bc19508 Pow3r: stage 1 (#4208)
Co-authored-by: 20kdc <asdd2808@gmail.com>
2021-07-04 18:11:52 +02:00

11 lines
220 B
C#

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