using Steamworks.Data; using System.Collections; using System.Collections.Generic; using UnityEngine; public class SteamLobbySaver : MonoBehaviour { public Lobby? currentLobby; public static SteamLobbySaver Instance; private void Awake() { Instance = this; DontDestroyOnLoad(this); } }