Animace + Menu

This commit is contained in:
Dominik G.
2025-10-05 18:18:12 +02:00
parent b52b3aa830
commit 550efdfaad
2192 changed files with 602748 additions and 2703 deletions

View File

@@ -0,0 +1,10 @@
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);
}
}