Files
tbd-station-14/Content.Server/Power/Pow3r/IPowerSolver.cs
2022-11-09 12:43:45 +11:00

8 lines
155 B
C#

namespace Content.Server.Power.Pow3r
{
public interface IPowerSolver
{
void Tick(float frameTime, PowerState state, int parallel);
}
}