mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
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);
|
|
}
|
|
}
|