6
2025-12-13 13:46:17 +03: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);
}
}