Reorganize project structure

This commit is contained in:
Stone_Red
2026-06-19 00:56:46 +02:00
parent 6f58eefb66
commit 95d88f1a8d
84 changed files with 267 additions and 186 deletions
@@ -0,0 +1,22 @@
using RemSox.Shared.UI.GUI.Rendering;
using RemSox.Shared.Networking;
namespace RemSox.Kernel.UI.GUI.Rendering;
public sealed class NetworkRenderSource(TcpRpcServer server) : IRenderSource
{
private const string MessageType = "RenderCmd";
public void Render(IEnumerable<RenderCommand> commands)
{
foreach (RenderCommand cmd in commands)
{
byte[] data = cmd.ToBytes();
server.SendRawToAll(MessageType, data);
}
}
public void Composite()
{
}
}