Files
tbd-station-14/Content.Server/Power/Pow3r/IPowerSolver.cs
2023-11-29 11:00:12 +11:00

10 lines
200 B
C#

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