Delta-v/Content.Server/Body/Network/IBodyNetworkFactory.cs

14 lines
236 B
C#

using System;
namespace Content.Server.Body.Network
{
public interface IBodyNetworkFactory
{
void DoAutoRegistrations();
BodyNetwork GetNetwork(string name);
BodyNetwork GetNetwork(Type type);
}
}