примеры клиента и сервера написаны

This commit is contained in:
2025-02-05 15:05:49 +03:00
parent 5e805a28b0
commit 2c2f554302
6 changed files with 54 additions and 15 deletions
@@ -2,12 +2,12 @@ using mROA.Abstract;
namespace mROA.Implementation.Bootstrap;
public interface IBootstrap
public interface ImRoaBuilder
{
void Build();
}
public class ServerBootstrap : IBootstrap
public class FullMixBuilder : ImRoaBuilder
{
public List<IInjectableModule> Modules { get; private set; } = new();
public void Build()