Files
tbd-station-14/Content.Server/Power/Pow3r/IPowerSolver.cs
Pieter-Jan Briers 290bffceec Make pow3r validation logic available on release (#36075)
I want to run this on live servers. It's behind a power_validate command, it still doesn't automatically get ran outside debug otherwise.
2025-03-25 10:02:39 -07:00

11 lines
241 B
C#

using Robust.Shared.Threading;
namespace Content.Server.Power.Pow3r
{
public interface IPowerSolver
{
void Tick(float frameTime, PowerState state, IParallelManager parallel);
void Validate(PowerState state);
}
}