This commit is contained in:
2024-09-28 20:11:56 +03:00
parent 5136f08dab
commit 672bb1ff6d
95 changed files with 741 additions and 601 deletions
@@ -0,0 +1,28 @@
using Ragon.Server.IO;
namespace Ragon.Tests;
public class FakeServerNetwork: INetworkServer
{
public void Close()
{
}
public void Stop()
{
}
public void Update()
{
}
public void Broadcast(byte[] data, NetworkChannel channel)
{
}
public void Listen(INetworkListener listener, NetworkConfiguration configuration)
{
}
}