10 lines
200 B
C#
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);
|
|
}
|
|
}
|