Files
megakoop/Networking/NGO/ISteamNGOAdapter.cs
2025-10-05 18:18:12 +02:00

11 lines
360 B
C#

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);
}
}