namespace MegaKoop.Networking { // Implement this interface on a component attached to your NetworkManager GameObject. // Use it to configure your chosen Steam transport (SteamNetworkingSockets) for NGO. public interface ISteamNGOAdapter { void ConfigureHost(ulong hostSteamId); void ConfigureClient(ulong hostSteamId); } }