lobby tweaking

This commit is contained in:
2025-10-05 19:01:48 +02:00
parent 6ebb88cb26
commit 586d364772
2 changed files with 200 additions and 5 deletions

View File

@@ -461,6 +461,7 @@ namespace MegaKoop.Steam
public void OpenFriendsOverlay() { Debug.Log("[SteamLobbyService] OpenFriendsOverlay stub"); }
public IReadOnlyList<(string steamId, string name, bool online)> GetFriends() => new List<(string, string, bool)>();
public void InviteFriendBySteamId(string steamId) { Debug.Log("[SteamLobbyService] InviteFriendBySteamId stub"); }
public bool IsKickedLocal() => false;
public IReadOnlyList<(string steamId, string name, bool isReady, bool isHost)> GetMembers() => new List<(string,string,bool,bool)>();
public void JoinLobbyByCode(string code) { _isInLobby = true; IsHost = false; LobbyCode = code; OnLobbyEntered?.Invoke(); }
}