├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── update.yml ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── crawl.php ├── docs ├── accessibility_features.html ├── api.html ├── api │ ├── isteamapps.html │ ├── isteamappticket.html │ ├── isteamclient.html │ ├── isteamcontroller.html │ ├── isteamfriends.html │ ├── isteamgamecoordinator.html │ ├── isteamgameserver.html │ ├── isteamgameserverstats.html │ ├── isteamhtmlsurface.html │ ├── isteamhttp.html │ ├── isteaminput.html │ ├── isteaminventory.html │ ├── isteammatchmaking.html │ ├── isteammatchmakingservers.html │ ├── isteammusic.html │ ├── isteammusicremote.html │ ├── isteamnetworking.html │ ├── isteamnetworkingmessages.html │ ├── isteamnetworkingsockets.html │ ├── isteamnetworkingutils.html │ ├── isteamparties.html │ ├── isteamremoteplay.html │ ├── isteamremotestorage.html │ ├── isteamscreenshots.html │ ├── isteamtimeline.html │ ├── isteamugc.html │ ├── isteamuser.html │ ├── isteamuserstats.html │ ├── isteamutils.html │ ├── isteamvideo.html │ ├── steam_api.html │ ├── steam_gameserver.html │ ├── steamencryptedappticket.html │ └── steamnetworkingtypes.html ├── blog │ └── 2020 │ │ └── new_releases.html ├── doc │ └── marketing │ │ ├── discounts │ │ └── seasonalsales.html │ │ └── event_tools │ │ └── bafta.html ├── events │ ├── gamescom_2025.html │ ├── gamescom_latam_2025.html │ ├── montreal_2025.html │ ├── sf2025.html │ ├── slice_2025.html │ └── virtual_conference │ │ └── reference.html ├── features.html ├── features │ ├── achievements.html │ ├── achievements │ │ ├── ach_guide.html │ │ └── stats_guide.html │ ├── anticheat.html │ ├── anticheat │ │ └── vac_integration.html │ ├── auth.html │ ├── cloud.html │ ├── cloudgaming.html │ ├── common_redist.html │ ├── community.html │ ├── curators │ │ └── winter2017.html │ ├── drm.html │ ├── enhancedrichpresence.html │ ├── error_reporting.html │ ├── families.html │ ├── game_notifications.html │ ├── html_surface.html │ ├── inventory.html │ ├── inventory │ │ ├── accessories.html │ │ ├── dynamicproperties.html │ │ ├── economy.html │ │ ├── economy │ │ │ ├── contextcommand.html │ │ │ ├── contextid.html │ │ │ ├── finalizewebassettransaction.html │ │ │ ├── getassetclass.html │ │ │ ├── getassetclassinfo.html │ │ │ ├── getassetprices.html │ │ │ ├── getcontextcontents.html │ │ │ ├── getcontexts.html │ │ │ ├── getexportedassets.html │ │ │ ├── gethistorycommanddetails.html │ │ │ ├── getuserhistory.html │ │ │ ├── grantpromoitem.html │ │ │ ├── historyexecutecommands.html │ │ │ ├── queryrefundallowed.html │ │ │ ├── refundpurchase.html │ │ │ ├── startwebassettransaction.html │ │ │ ├── supportgetassethistory.html │ │ │ ├── tradesetowned.html │ │ │ └── tradesetunowned.html │ │ ├── itemstore.html │ │ ├── itemtags.html │ │ ├── schema.html │ │ ├── tools.html │ │ └── webfunctions.html │ ├── keys.html │ ├── leaderboards.html │ ├── leaderboards │ │ └── guide.html │ ├── microtransactions.html │ ├── microtransactions │ │ ├── implementation.html │ │ └── recurring_billing.html │ ├── multiplayer.html │ ├── multiplayer │ │ ├── game_servers.html │ │ ├── matchmaking.html │ │ ├── matchmaking │ │ │ └── skill.html │ │ ├── networking.html │ │ └── steamdatagramrelay.html │ ├── overlay.html │ ├── playtest.html │ ├── remoteplay.html │ ├── screenshots.html │ ├── steam_audio.html │ ├── steam_controller.html │ ├── steam_controller │ │ ├── action_manifest_file.html │ │ ├── action_set_layers.html │ │ ├── activators.html │ │ ├── browse_configs.html │ │ ├── concepts.html │ │ ├── device.html │ │ ├── device │ │ │ ├── ps4_controller.html │ │ │ ├── steam_controller.html │ │ │ ├── x360_controller.html │ │ │ └── xb1_controller.html │ │ ├── getting_started_for_devs.html │ │ ├── getting_started_for_players.html │ │ ├── iga_examples.html │ │ ├── iga_file.html │ │ ├── input_source.html │ │ ├── input_source_modes.html │ │ ├── legacy_mode.html │ │ ├── mode_shifting.html │ │ ├── mouse_regions.html │ │ ├── radial_menus.html │ │ ├── steam_input_gamepad_emulation_bestpractices.html │ │ ├── touch_menus.html │ │ └── workshop_uploaded_configs.html │ ├── steam_input │ │ └── stats_reports.html │ ├── steamvr.html │ ├── steamvr │ │ ├── enterprise.html │ │ ├── info.html │ │ ├── input.html │ │ ├── openvr.html │ │ └── settings.html │ ├── streaming_video.html │ ├── streaming_video │ │ ├── associated_files.html │ │ ├── extras.html │ │ ├── management.html │ │ ├── series.html │ │ └── upload.html │ ├── timeline.html │ ├── voice.html │ ├── workshop.html │ └── workshop │ │ ├── implementation.html │ │ ├── itemversioning.html │ │ └── tags.html ├── finance.html ├── finance │ ├── payments_salesreporting.html │ ├── payments_salesreporting │ │ └── faq.html │ ├── refunds.html │ └── taxfaq.html ├── gettingstarted.html ├── gettingstarted │ ├── appfee.html │ ├── contentsurvey.html │ ├── contentsurvey │ │ └── germany.html │ ├── faq.html │ ├── managing_apps.html │ ├── managing_apps │ │ ├── sharing.html │ │ └── transfer.html │ ├── managing_users.html │ ├── managing_users │ │ └── communication.html │ ├── mobile.html │ └── onboarding.html ├── help │ ├── account.html │ └── contact.html ├── home.html ├── links.json ├── marketing.html ├── marketing │ ├── advertising.html │ ├── bestpractices.html │ ├── branding.html │ ├── branding │ │ ├── attribution.html │ │ └── ssa.html │ ├── community_coupons.html │ ├── community_moderation.html │ ├── community_moderation │ │ └── adding_moderators.html │ ├── curators.html │ ├── curators │ │ └── lists.html │ ├── discounts.html │ ├── discounts │ │ ├── dailydeal.html │ │ ├── freeweekends.html │ │ └── seasonalsales.html │ ├── event_tools.html │ ├── event_tools │ │ ├── embed.html │ │ ├── event_examples.html │ │ ├── import.html │ │ ├── moderation.html │ │ ├── sale_pages_minimum.html │ │ ├── sales.html │ │ ├── sales │ │ │ ├── assets │ │ │ │ └── wide_page_update.html │ │ │ ├── groups.html │ │ │ ├── livestream.html │ │ │ ├── minimum.html │ │ │ ├── sections.html │ │ │ ├── sections │ │ │ │ ├── apps.html │ │ │ │ └── tabs.html │ │ │ └── tools.html │ │ ├── stats.html │ │ ├── store_banners.html │ │ ├── type_majorupdate.html │ │ ├── type_patchnotes.html │ │ └── visibility.html │ ├── followers.html │ ├── google_analytics.html │ ├── pointsshopitems.html │ ├── profile.html │ ├── steamgamefestival │ │ ├── 2020autumn.html │ │ └── 2021february.html │ ├── steamtv.html │ ├── steamtv │ │ ├── event.html │ │ └── gamedata.html │ ├── tools.html │ ├── tradingcards.html │ ├── traffic_reporting.html │ ├── upcoming_events.html │ ├── upcoming_events │ │ ├── 2024_autumn_sale.html │ │ ├── 2024_summer_sale.html │ │ ├── 2024_winter_sale.html │ │ ├── 2025_autumn_sale.html │ │ ├── 2025_spring_sale.html │ │ ├── 2025_summer_sale.html │ │ ├── 2025_winter_sale.html │ │ ├── nextfest.html │ │ ├── nextfest │ │ │ ├── 2022feb.html │ │ │ ├── 2023jun.html │ │ │ ├── 2023oct.html │ │ │ ├── 2024feb.html │ │ │ ├── 2024jun.html │ │ │ ├── 2024oct.html │ │ │ ├── 2025february.html │ │ │ ├── 2025june.html │ │ │ ├── 2025october.html │ │ │ ├── 2026february.html │ │ │ ├── scheduling.html │ │ │ └── tips.html │ │ ├── spring_sale.html │ │ ├── steam_scream.html │ │ ├── summer_sale.html │ │ ├── summer_spotlight.html │ │ ├── themed_sales.html │ │ └── themed_sales │ │ │ ├── 4x_2025.html │ │ │ ├── animal_2025.html │ │ │ ├── automation_2025.html │ │ │ ├── board_game_2026.html │ │ │ ├── city_builder_and_colony_sim_2025.html │ │ │ ├── couch_coop_rpt_2025.html │ │ │ ├── creature_collector_2025.html │ │ │ ├── deckbuilder_2024.html │ │ │ ├── deckbuilders_2026.html │ │ │ ├── detective_2026.html │ │ │ ├── dinosvsrobots_2024.html │ │ │ ├── economy_2024.html │ │ │ ├── endlessreplayability_2024.html │ │ │ ├── farming_2024.html │ │ │ ├── fhouse_home_2026.html │ │ │ ├── fishing_2025.html │ │ │ ├── fps_2024.html │ │ │ ├── hidden_object_2026.html │ │ │ ├── horse_2026.html │ │ │ ├── idler_2025.html │ │ │ ├── medieval_2026.html │ │ │ ├── ocean_2026.html │ │ │ ├── piratesvsninjas_2024.html │ │ │ ├── political_sim_2025.html │ │ │ ├── puzzle_2023.html │ │ │ ├── pvp_2026.html │ │ │ ├── racing_2025.html │ │ │ ├── remoteplaytogether.html │ │ │ ├── shmup_2023.html │ │ │ ├── sokoban_2025.html │ │ │ ├── sports_2023.html │ │ │ ├── sports_2025.html │ │ │ ├── stealth_2023.html │ │ │ ├── steam_halloween_2025.html │ │ │ ├── strategy_2023.html │ │ │ ├── survivalcrafting_2024.html │ │ │ ├── third_person_shooters_2025.html │ │ │ ├── tower_defense_2026.html │ │ │ ├── turn-based_rpg_2024.html │ │ │ ├── typing_2026.html │ │ │ ├── visual_novel_2025.html │ │ │ ├── vn_2023.html │ │ │ ├── vrfest_2023.html │ │ │ ├── wargames_2025.html │ │ │ └── zombies_vs_vampires_2025.html │ ├── utm_analytics.html │ ├── visibility.html │ ├── visibility │ │ └── update_rounds.html │ ├── widget.html │ ├── wishlist.html │ └── wishlist │ │ └── reporting.html ├── quickstart.html ├── resources │ ├── gdc2019.html │ ├── igdx2023.html │ ├── kl2023.html │ ├── publishers.html │ └── sales_feature_beta.html ├── sdk.html ├── sdk │ ├── api.html │ ├── api │ │ ├── debugging.html │ │ └── example.html │ ├── goldmaster.html │ ├── installscripts.html │ ├── updating.html │ ├── updating │ │ ├── partial_depot.html │ │ └── rename_exe.html │ ├── uploading.html │ └── uploading │ │ ├── distributing_gs.html │ │ ├── distributing_opensource.html │ │ ├── distributing_source_engine.html │ │ └── local_content_server.html ├── sitelicense.html ├── sitelicense │ ├── licensees.html │ ├── licensees │ │ ├── faq.html │ │ ├── gettingstarted.html │ │ ├── gettingstarted │ │ │ ├── licensemodelpc.html │ │ │ └── licensemodelvr.html │ │ ├── intermediaries.html │ │ └── signup.html │ └── publisher.html ├── steamdeck.html ├── steamdeck │ ├── brandguidelines.html │ ├── compat.html │ ├── compat │ │ └── verified.html │ ├── debugging.html │ ├── devkits.html │ ├── faq.html │ ├── loadgames.html │ ├── proton.html │ ├── recommendations.html │ ├── svg.html │ ├── templates.html │ ├── testing.html │ └── virtualconference.html ├── store.html ├── store │ ├── accolades.html │ ├── advancedaccess.html │ ├── age_gate.html │ ├── application.html │ ├── application │ │ ├── branches.html │ │ ├── builds.html │ │ ├── bundles.html │ │ ├── bundles │ │ │ └── collaborative.html │ │ ├── demos.html │ │ ├── depots.html │ │ ├── dlc.html │ │ ├── dlc │ │ │ └── browse.html │ │ ├── packages.html │ │ ├── packages │ │ │ ├── autogrants.html │ │ │ └── deluxe.html │ │ ├── platforms.html │ │ ├── platforms │ │ │ └── linux.html │ │ └── soundtrackapp.html │ ├── assets.html │ ├── assets │ │ ├── community.html │ │ ├── eventassets.html │ │ ├── libraryassets.html │ │ ├── overrides.html │ │ ├── promos.html │ │ ├── rules.html │ │ └── standard.html │ ├── broadcast.html │ ├── broadcast │ │ ├── demo.html │ │ ├── faq.html │ │ ├── moderation.html │ │ ├── setting_up.html │ │ └── stats.html │ ├── china.html │ ├── coming_soon.html │ ├── creator_homepage.html │ ├── creator_homepage │ │ └── example.html │ ├── earlyaccess.html │ ├── editing.html │ ├── editing │ │ └── name.html │ ├── franchise_pages.html │ ├── freetoplay.html │ ├── getreviews.html │ ├── localization.html │ ├── localization │ │ └── languages.html │ ├── manageeditions.html │ ├── news │ │ └── rss.html │ ├── page.html │ ├── page │ │ ├── accolades.html │ │ ├── assets.html │ │ └── description.html │ ├── prepurchase.html │ ├── pricing.html │ ├── pricing │ │ ├── csv.html │ │ ├── currencies.html │ │ ├── new_currency.html │ │ └── subscriptions.html │ ├── promo.html │ ├── promo │ │ ├── dailydeal.html │ │ ├── franchise_page.html │ │ ├── midweek.html │ │ ├── organizers.html │ │ ├── planning.html │ │ ├── publisher_page.html │ │ ├── publisher_sales.html │ │ ├── region_page.html │ │ ├── regional_sales.html │ │ ├── showcase_page.html │ │ ├── showcase_pages.html │ │ ├── theme_page.html │ │ ├── themed_sales.html │ │ ├── thirdpartyevents.html │ │ └── weekend.html │ ├── release_dates.html │ ├── releasing.html │ ├── retire_app.html │ ├── review_process.html │ ├── reviews.html │ ├── seasonpass.html │ ├── tags.html │ ├── testing.html │ ├── top_sellers.html │ ├── trailer.html │ ├── types.html │ └── updates.html ├── webapi.html ├── webapi │ ├── ibroadcastservice.html │ ├── icheatreportingservice.html │ ├── icloudservice.html │ ├── ieconmarketservice.html │ ├── ieconservice.html │ ├── ifinancialsservice.html │ ├── igameinventory.html │ ├── igamenotificationsservice.html │ ├── igameserversservice.html │ ├── iinventoryservice.html │ ├── ilobbymatchmakingservice.html │ ├── ipartnerfinancialsservice.html │ ├── iplayerservice.html │ ├── ipublishedfileservice.html │ ├── isitelicenseservice.html │ ├── isteamapps.html │ ├── isteamcommunity.html │ ├── isteameconomy.html │ ├── isteamgameserverstats.html │ ├── isteamleaderboards.html │ ├── isteammicrotxn.html │ ├── isteammicrotxnsandbox.html │ ├── isteamnews.html │ ├── isteampublisheditemsearch.html │ ├── isteampublisheditemvoting.html │ ├── isteamremotestorage.html │ ├── isteamuser.html │ ├── isteamuserauth.html │ ├── isteamuserstats.html │ ├── isteamwebapiutil.html │ ├── istoreservice.html │ ├── itrustservice.html │ └── iworkshopservice.html ├── webapi_overview.html ├── webapi_overview │ ├── auth.html │ ├── oauth.html │ └── responses.html └── youtube.html ├── package.json └── update.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/README.md -------------------------------------------------------------------------------- /crawl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/crawl.php -------------------------------------------------------------------------------- /docs/accessibility_features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/accessibility_features.html -------------------------------------------------------------------------------- /docs/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api.html -------------------------------------------------------------------------------- /docs/api/isteamapps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamapps.html -------------------------------------------------------------------------------- /docs/api/isteamappticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamappticket.html -------------------------------------------------------------------------------- /docs/api/isteamclient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamclient.html -------------------------------------------------------------------------------- /docs/api/isteamcontroller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamcontroller.html -------------------------------------------------------------------------------- /docs/api/isteamfriends.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamfriends.html -------------------------------------------------------------------------------- /docs/api/isteamgamecoordinator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamgamecoordinator.html -------------------------------------------------------------------------------- /docs/api/isteamgameserver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamgameserver.html -------------------------------------------------------------------------------- /docs/api/isteamgameserverstats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamgameserverstats.html -------------------------------------------------------------------------------- /docs/api/isteamhtmlsurface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamhtmlsurface.html -------------------------------------------------------------------------------- /docs/api/isteamhttp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamhttp.html -------------------------------------------------------------------------------- /docs/api/isteaminput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteaminput.html -------------------------------------------------------------------------------- /docs/api/isteaminventory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteaminventory.html -------------------------------------------------------------------------------- /docs/api/isteammatchmaking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteammatchmaking.html -------------------------------------------------------------------------------- /docs/api/isteammatchmakingservers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteammatchmakingservers.html -------------------------------------------------------------------------------- /docs/api/isteammusic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteammusic.html -------------------------------------------------------------------------------- /docs/api/isteammusicremote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteammusicremote.html -------------------------------------------------------------------------------- /docs/api/isteamnetworking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamnetworking.html -------------------------------------------------------------------------------- /docs/api/isteamnetworkingmessages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamnetworkingmessages.html -------------------------------------------------------------------------------- /docs/api/isteamnetworkingsockets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamnetworkingsockets.html -------------------------------------------------------------------------------- /docs/api/isteamnetworkingutils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamnetworkingutils.html -------------------------------------------------------------------------------- /docs/api/isteamparties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamparties.html -------------------------------------------------------------------------------- /docs/api/isteamremoteplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamremoteplay.html -------------------------------------------------------------------------------- /docs/api/isteamremotestorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamremotestorage.html -------------------------------------------------------------------------------- /docs/api/isteamscreenshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamscreenshots.html -------------------------------------------------------------------------------- /docs/api/isteamtimeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamtimeline.html -------------------------------------------------------------------------------- /docs/api/isteamugc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamugc.html -------------------------------------------------------------------------------- /docs/api/isteamuser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamuser.html -------------------------------------------------------------------------------- /docs/api/isteamuserstats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamuserstats.html -------------------------------------------------------------------------------- /docs/api/isteamutils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamutils.html -------------------------------------------------------------------------------- /docs/api/isteamvideo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/isteamvideo.html -------------------------------------------------------------------------------- /docs/api/steam_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/steam_api.html -------------------------------------------------------------------------------- /docs/api/steam_gameserver.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/steam_gameserver.html -------------------------------------------------------------------------------- /docs/api/steamencryptedappticket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/steamencryptedappticket.html -------------------------------------------------------------------------------- /docs/api/steamnetworkingtypes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/api/steamnetworkingtypes.html -------------------------------------------------------------------------------- /docs/blog/2020/new_releases.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/blog/2020/new_releases.html -------------------------------------------------------------------------------- /docs/doc/marketing/discounts/seasonalsales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/doc/marketing/discounts/seasonalsales.html -------------------------------------------------------------------------------- /docs/doc/marketing/event_tools/bafta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/doc/marketing/event_tools/bafta.html -------------------------------------------------------------------------------- /docs/events/gamescom_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/events/gamescom_2025.html -------------------------------------------------------------------------------- /docs/events/gamescom_latam_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/events/gamescom_latam_2025.html -------------------------------------------------------------------------------- /docs/events/montreal_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/events/montreal_2025.html -------------------------------------------------------------------------------- /docs/events/sf2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/events/sf2025.html -------------------------------------------------------------------------------- /docs/events/slice_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/events/slice_2025.html -------------------------------------------------------------------------------- /docs/events/virtual_conference/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/events/virtual_conference/reference.html -------------------------------------------------------------------------------- /docs/features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features.html -------------------------------------------------------------------------------- /docs/features/achievements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/achievements.html -------------------------------------------------------------------------------- /docs/features/achievements/ach_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/achievements/ach_guide.html -------------------------------------------------------------------------------- /docs/features/achievements/stats_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/achievements/stats_guide.html -------------------------------------------------------------------------------- /docs/features/anticheat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/anticheat.html -------------------------------------------------------------------------------- /docs/features/anticheat/vac_integration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/anticheat/vac_integration.html -------------------------------------------------------------------------------- /docs/features/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/auth.html -------------------------------------------------------------------------------- /docs/features/cloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/cloud.html -------------------------------------------------------------------------------- /docs/features/cloudgaming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/cloudgaming.html -------------------------------------------------------------------------------- /docs/features/common_redist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/common_redist.html -------------------------------------------------------------------------------- /docs/features/community.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/community.html -------------------------------------------------------------------------------- /docs/features/curators/winter2017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/curators/winter2017.html -------------------------------------------------------------------------------- /docs/features/drm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/drm.html -------------------------------------------------------------------------------- /docs/features/enhancedrichpresence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/enhancedrichpresence.html -------------------------------------------------------------------------------- /docs/features/error_reporting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/error_reporting.html -------------------------------------------------------------------------------- /docs/features/families.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/families.html -------------------------------------------------------------------------------- /docs/features/game_notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/game_notifications.html -------------------------------------------------------------------------------- /docs/features/html_surface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/html_surface.html -------------------------------------------------------------------------------- /docs/features/inventory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory.html -------------------------------------------------------------------------------- /docs/features/inventory/accessories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/accessories.html -------------------------------------------------------------------------------- /docs/features/inventory/dynamicproperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/dynamicproperties.html -------------------------------------------------------------------------------- /docs/features/inventory/economy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/contextcommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/contextcommand.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/contextid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/contextid.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/finalizewebassettransaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/finalizewebassettransaction.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/getassetclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/getassetclass.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/getassetclassinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/getassetclassinfo.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/getassetprices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/getassetprices.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/getcontextcontents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/getcontextcontents.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/getcontexts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/getcontexts.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/getexportedassets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/getexportedassets.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/gethistorycommanddetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/gethistorycommanddetails.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/getuserhistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/getuserhistory.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/grantpromoitem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/grantpromoitem.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/historyexecutecommands.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/historyexecutecommands.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/queryrefundallowed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/queryrefundallowed.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/refundpurchase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/refundpurchase.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/startwebassettransaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/startwebassettransaction.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/supportgetassethistory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/supportgetassethistory.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/tradesetowned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/tradesetowned.html -------------------------------------------------------------------------------- /docs/features/inventory/economy/tradesetunowned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/economy/tradesetunowned.html -------------------------------------------------------------------------------- /docs/features/inventory/itemstore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/itemstore.html -------------------------------------------------------------------------------- /docs/features/inventory/itemtags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/itemtags.html -------------------------------------------------------------------------------- /docs/features/inventory/schema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/schema.html -------------------------------------------------------------------------------- /docs/features/inventory/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/tools.html -------------------------------------------------------------------------------- /docs/features/inventory/webfunctions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/inventory/webfunctions.html -------------------------------------------------------------------------------- /docs/features/keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/keys.html -------------------------------------------------------------------------------- /docs/features/leaderboards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/leaderboards.html -------------------------------------------------------------------------------- /docs/features/leaderboards/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/leaderboards/guide.html -------------------------------------------------------------------------------- /docs/features/microtransactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/microtransactions.html -------------------------------------------------------------------------------- /docs/features/microtransactions/implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/microtransactions/implementation.html -------------------------------------------------------------------------------- /docs/features/microtransactions/recurring_billing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/microtransactions/recurring_billing.html -------------------------------------------------------------------------------- /docs/features/multiplayer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/multiplayer.html -------------------------------------------------------------------------------- /docs/features/multiplayer/game_servers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/multiplayer/game_servers.html -------------------------------------------------------------------------------- /docs/features/multiplayer/matchmaking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/multiplayer/matchmaking.html -------------------------------------------------------------------------------- /docs/features/multiplayer/matchmaking/skill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/multiplayer/matchmaking/skill.html -------------------------------------------------------------------------------- /docs/features/multiplayer/networking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/multiplayer/networking.html -------------------------------------------------------------------------------- /docs/features/multiplayer/steamdatagramrelay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/multiplayer/steamdatagramrelay.html -------------------------------------------------------------------------------- /docs/features/overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/overlay.html -------------------------------------------------------------------------------- /docs/features/playtest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/playtest.html -------------------------------------------------------------------------------- /docs/features/remoteplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/remoteplay.html -------------------------------------------------------------------------------- /docs/features/screenshots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/screenshots.html -------------------------------------------------------------------------------- /docs/features/steam_audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_audio.html -------------------------------------------------------------------------------- /docs/features/steam_controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller.html -------------------------------------------------------------------------------- /docs/features/steam_controller/action_manifest_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/action_manifest_file.html -------------------------------------------------------------------------------- /docs/features/steam_controller/action_set_layers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/action_set_layers.html -------------------------------------------------------------------------------- /docs/features/steam_controller/activators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/activators.html -------------------------------------------------------------------------------- /docs/features/steam_controller/browse_configs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/browse_configs.html -------------------------------------------------------------------------------- /docs/features/steam_controller/concepts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/concepts.html -------------------------------------------------------------------------------- /docs/features/steam_controller/device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/device.html -------------------------------------------------------------------------------- /docs/features/steam_controller/device/ps4_controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/device/ps4_controller.html -------------------------------------------------------------------------------- /docs/features/steam_controller/device/steam_controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/device/steam_controller.html -------------------------------------------------------------------------------- /docs/features/steam_controller/device/x360_controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/device/x360_controller.html -------------------------------------------------------------------------------- /docs/features/steam_controller/device/xb1_controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/device/xb1_controller.html -------------------------------------------------------------------------------- /docs/features/steam_controller/getting_started_for_devs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/getting_started_for_devs.html -------------------------------------------------------------------------------- /docs/features/steam_controller/getting_started_for_players.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/getting_started_for_players.html -------------------------------------------------------------------------------- /docs/features/steam_controller/iga_examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/iga_examples.html -------------------------------------------------------------------------------- /docs/features/steam_controller/iga_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/iga_file.html -------------------------------------------------------------------------------- /docs/features/steam_controller/input_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/input_source.html -------------------------------------------------------------------------------- /docs/features/steam_controller/input_source_modes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/input_source_modes.html -------------------------------------------------------------------------------- /docs/features/steam_controller/legacy_mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/legacy_mode.html -------------------------------------------------------------------------------- /docs/features/steam_controller/mode_shifting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/mode_shifting.html -------------------------------------------------------------------------------- /docs/features/steam_controller/mouse_regions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/mouse_regions.html -------------------------------------------------------------------------------- /docs/features/steam_controller/radial_menus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/radial_menus.html -------------------------------------------------------------------------------- /docs/features/steam_controller/steam_input_gamepad_emulation_bestpractices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/steam_input_gamepad_emulation_bestpractices.html -------------------------------------------------------------------------------- /docs/features/steam_controller/touch_menus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/touch_menus.html -------------------------------------------------------------------------------- /docs/features/steam_controller/workshop_uploaded_configs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_controller/workshop_uploaded_configs.html -------------------------------------------------------------------------------- /docs/features/steam_input/stats_reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steam_input/stats_reports.html -------------------------------------------------------------------------------- /docs/features/steamvr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steamvr.html -------------------------------------------------------------------------------- /docs/features/steamvr/enterprise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steamvr/enterprise.html -------------------------------------------------------------------------------- /docs/features/steamvr/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steamvr/info.html -------------------------------------------------------------------------------- /docs/features/steamvr/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steamvr/input.html -------------------------------------------------------------------------------- /docs/features/steamvr/openvr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steamvr/openvr.html -------------------------------------------------------------------------------- /docs/features/steamvr/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/steamvr/settings.html -------------------------------------------------------------------------------- /docs/features/streaming_video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/streaming_video.html -------------------------------------------------------------------------------- /docs/features/streaming_video/associated_files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/streaming_video/associated_files.html -------------------------------------------------------------------------------- /docs/features/streaming_video/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/streaming_video/extras.html -------------------------------------------------------------------------------- /docs/features/streaming_video/management.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/streaming_video/management.html -------------------------------------------------------------------------------- /docs/features/streaming_video/series.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/streaming_video/series.html -------------------------------------------------------------------------------- /docs/features/streaming_video/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/streaming_video/upload.html -------------------------------------------------------------------------------- /docs/features/timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/timeline.html -------------------------------------------------------------------------------- /docs/features/voice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/voice.html -------------------------------------------------------------------------------- /docs/features/workshop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/workshop.html -------------------------------------------------------------------------------- /docs/features/workshop/implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/workshop/implementation.html -------------------------------------------------------------------------------- /docs/features/workshop/itemversioning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/workshop/itemversioning.html -------------------------------------------------------------------------------- /docs/features/workshop/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/features/workshop/tags.html -------------------------------------------------------------------------------- /docs/finance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/finance.html -------------------------------------------------------------------------------- /docs/finance/payments_salesreporting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/finance/payments_salesreporting.html -------------------------------------------------------------------------------- /docs/finance/payments_salesreporting/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/finance/payments_salesreporting/faq.html -------------------------------------------------------------------------------- /docs/finance/refunds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/finance/refunds.html -------------------------------------------------------------------------------- /docs/finance/taxfaq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/finance/taxfaq.html -------------------------------------------------------------------------------- /docs/gettingstarted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted.html -------------------------------------------------------------------------------- /docs/gettingstarted/appfee.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted/appfee.html -------------------------------------------------------------------------------- /docs/gettingstarted/contentsurvey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted/contentsurvey.html -------------------------------------------------------------------------------- /docs/gettingstarted/contentsurvey/germany.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted/contentsurvey/germany.html -------------------------------------------------------------------------------- /docs/gettingstarted/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted/faq.html -------------------------------------------------------------------------------- /docs/gettingstarted/managing_apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted/managing_apps.html -------------------------------------------------------------------------------- /docs/gettingstarted/managing_apps/sharing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted/managing_apps/sharing.html -------------------------------------------------------------------------------- /docs/gettingstarted/managing_apps/transfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted/managing_apps/transfer.html -------------------------------------------------------------------------------- /docs/gettingstarted/managing_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted/managing_users.html -------------------------------------------------------------------------------- /docs/gettingstarted/managing_users/communication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted/managing_users/communication.html -------------------------------------------------------------------------------- /docs/gettingstarted/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted/mobile.html -------------------------------------------------------------------------------- /docs/gettingstarted/onboarding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/gettingstarted/onboarding.html -------------------------------------------------------------------------------- /docs/help/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/help/account.html -------------------------------------------------------------------------------- /docs/help/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/help/contact.html -------------------------------------------------------------------------------- /docs/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/home.html -------------------------------------------------------------------------------- /docs/links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/links.json -------------------------------------------------------------------------------- /docs/marketing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing.html -------------------------------------------------------------------------------- /docs/marketing/advertising.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/advertising.html -------------------------------------------------------------------------------- /docs/marketing/bestpractices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/bestpractices.html -------------------------------------------------------------------------------- /docs/marketing/branding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/branding.html -------------------------------------------------------------------------------- /docs/marketing/branding/attribution.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/branding/attribution.html -------------------------------------------------------------------------------- /docs/marketing/branding/ssa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/branding/ssa.html -------------------------------------------------------------------------------- /docs/marketing/community_coupons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/community_coupons.html -------------------------------------------------------------------------------- /docs/marketing/community_moderation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/community_moderation.html -------------------------------------------------------------------------------- /docs/marketing/community_moderation/adding_moderators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/community_moderation/adding_moderators.html -------------------------------------------------------------------------------- /docs/marketing/curators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/curators.html -------------------------------------------------------------------------------- /docs/marketing/curators/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/curators/lists.html -------------------------------------------------------------------------------- /docs/marketing/discounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/discounts.html -------------------------------------------------------------------------------- /docs/marketing/discounts/dailydeal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/discounts/dailydeal.html -------------------------------------------------------------------------------- /docs/marketing/discounts/freeweekends.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/discounts/freeweekends.html -------------------------------------------------------------------------------- /docs/marketing/discounts/seasonalsales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/discounts/seasonalsales.html -------------------------------------------------------------------------------- /docs/marketing/event_tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/embed.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/event_examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/event_examples.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/import.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/moderation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/moderation.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/sale_pages_minimum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/sale_pages_minimum.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/sales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/sales.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/sales/assets/wide_page_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/sales/assets/wide_page_update.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/sales/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/sales/groups.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/sales/livestream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/sales/livestream.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/sales/minimum.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/sales/minimum.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/sales/sections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/sales/sections.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/sales/sections/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/sales/sections/apps.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/sales/sections/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/sales/sections/tabs.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/sales/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/sales/tools.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/stats.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/store_banners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/store_banners.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/type_majorupdate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/type_majorupdate.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/type_patchnotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/type_patchnotes.html -------------------------------------------------------------------------------- /docs/marketing/event_tools/visibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/event_tools/visibility.html -------------------------------------------------------------------------------- /docs/marketing/followers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/followers.html -------------------------------------------------------------------------------- /docs/marketing/google_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/google_analytics.html -------------------------------------------------------------------------------- /docs/marketing/pointsshopitems.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/pointsshopitems.html -------------------------------------------------------------------------------- /docs/marketing/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/profile.html -------------------------------------------------------------------------------- /docs/marketing/steamgamefestival/2020autumn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/steamgamefestival/2020autumn.html -------------------------------------------------------------------------------- /docs/marketing/steamgamefestival/2021february.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/steamgamefestival/2021february.html -------------------------------------------------------------------------------- /docs/marketing/steamtv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/steamtv.html -------------------------------------------------------------------------------- /docs/marketing/steamtv/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/steamtv/event.html -------------------------------------------------------------------------------- /docs/marketing/steamtv/gamedata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/steamtv/gamedata.html -------------------------------------------------------------------------------- /docs/marketing/tools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/tools.html -------------------------------------------------------------------------------- /docs/marketing/tradingcards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/tradingcards.html -------------------------------------------------------------------------------- /docs/marketing/traffic_reporting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/traffic_reporting.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/2024_autumn_sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/2024_autumn_sale.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/2024_summer_sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/2024_summer_sale.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/2024_winter_sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/2024_winter_sale.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/2025_autumn_sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/2025_autumn_sale.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/2025_spring_sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/2025_spring_sale.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/2025_summer_sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/2025_summer_sale.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/2025_winter_sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/2025_winter_sale.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/2022feb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/2022feb.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/2023jun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/2023jun.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/2023oct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/2023oct.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/2024feb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/2024feb.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/2024jun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/2024jun.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/2024oct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/2024oct.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/2025february.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/2025february.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/2025june.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/2025june.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/2025october.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/2025october.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/2026february.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/2026february.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/scheduling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/scheduling.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/nextfest/tips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/nextfest/tips.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/spring_sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/spring_sale.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/steam_scream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/steam_scream.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/summer_sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/summer_sale.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/summer_spotlight.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/summer_spotlight.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/4x_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/4x_2025.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/animal_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/animal_2025.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/automation_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/automation_2025.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/board_game_2026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/board_game_2026.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/city_builder_and_colony_sim_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/city_builder_and_colony_sim_2025.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/couch_coop_rpt_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/couch_coop_rpt_2025.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/creature_collector_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/creature_collector_2025.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/deckbuilder_2024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/deckbuilder_2024.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/deckbuilders_2026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/deckbuilders_2026.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/detective_2026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/detective_2026.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/dinosvsrobots_2024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/dinosvsrobots_2024.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/economy_2024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/economy_2024.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/endlessreplayability_2024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/endlessreplayability_2024.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/farming_2024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/farming_2024.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/fhouse_home_2026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/fhouse_home_2026.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/fishing_2025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/fishing_2025.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/fps_2024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/fps_2024.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/hidden_object_2026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/hidden_object_2026.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/horse_2026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteamDatabase/SteamworksDocumentation/HEAD/docs/marketing/upcoming_events/themed_sales/horse_2026.html -------------------------------------------------------------------------------- /docs/marketing/upcoming_events/themed_sales/idler_2025.html: -------------------------------------------------------------------------------- 1 |