mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 15:08:46 +03:00
11 lines
220 B
C#
11 lines
220 B
C#
namespace Content.Server.Power.Pow3r
|
|
{
|
|
public sealed class NoOpSolver : IPowerSolver
|
|
{
|
|
public void Tick(float frameTime, PowerState state)
|
|
{
|
|
// Literally nothing.
|
|
}
|
|
}
|
|
}
|