/// <summary>
 /// Activates the Steam Overlay to the Steam store page for the provided app.
 /// </summary>
 public static void OpenStoreOverlay(AppId id) => Internal.ActivateGameOverlayToStore(id.Value, OverlayToStoreFlag.None);
예제 #2
0
 /// <summary>
 /// Activates the Steam Overlay to the Steam store page for the provided app.
 /// </summary>
 public static void OpenStoreOverlay(AppId id, OverlayToStoreFlag overlayToStoreFlag = OverlayToStoreFlag.None)
 {
     Internal.ActivateGameOverlayToStore(id.Value, overlayToStoreFlag);
 }