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.
11 lines
241 B
C#
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);
|
|
}
|
|
}
|