├── .gitignore ├── Content └── OnlinePlatformSteam.Icon.flax ├── LICENSE ├── OnlinePlatformSteam.flaxproj ├── README.md └── Source ├── .editorconfig ├── OnlinePlatformSteam ├── OnlinePlatformSteam.Build.cs ├── OnlinePlatformSteam.cpp ├── OnlinePlatformSteam.cs └── OnlinePlatformSteam.h ├── OnlinePlatformSteamEditorTarget.Build.cs ├── OnlinePlatformSteamTarget.Build.cs └── Steamworks ├── .gitignore ├── Binaries ├── .gitignore ├── Linux │ └── libsteam_api.so ├── Mac │ └── libsteam_api.dylib └── Windows │ ├── steam_api64.dll │ └── steam_api64.lib ├── LICENSE ├── Steamworks.Build.cs ├── isteamapplist.h ├── isteamapps.h ├── isteamappticket.h ├── isteamclient.h ├── isteamcontroller.h ├── isteamfriends.h ├── isteamgamecoordinator.h ├── isteamgameserver.h ├── isteamgameserverstats.h ├── isteamhtmlsurface.h ├── isteamhttp.h ├── isteaminput.h ├── isteaminventory.h ├── isteammatchmaking.h ├── isteammusic.h ├── isteammusicremote.h ├── isteamnetworking.h ├── isteamnetworkingmessages.h ├── isteamnetworkingsockets.h ├── isteamnetworkingutils.h ├── isteamparentalsettings.h ├── isteamps3overlayrenderer.h ├── isteamremoteplay.h ├── isteamremotestorage.h ├── isteamscreenshots.h ├── isteamugc.h ├── isteamuser.h ├── isteamuserstats.h ├── isteamutils.h ├── isteamvideo.h ├── matchmakingtypes.h ├── steam_api.h ├── steam_api_common.h ├── steam_api_flat.h ├── steam_api_internal.h ├── steam_gameserver.h ├── steamclientpublic.h ├── steamencryptedappticket.h ├── steamhttpenums.h ├── steamnetworkingfakeip.h ├── steamnetworkingtypes.h ├── steamps3params.h ├── steamtypes.h └── steamuniverse.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/OnlinePlatformSteam.Icon.flax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Content/OnlinePlatformSteam.Icon.flax -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/LICENSE -------------------------------------------------------------------------------- /OnlinePlatformSteam.flaxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/OnlinePlatformSteam.flaxproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/README.md -------------------------------------------------------------------------------- /Source/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/.editorconfig -------------------------------------------------------------------------------- /Source/OnlinePlatformSteam/OnlinePlatformSteam.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/OnlinePlatformSteam/OnlinePlatformSteam.Build.cs -------------------------------------------------------------------------------- /Source/OnlinePlatformSteam/OnlinePlatformSteam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/OnlinePlatformSteam/OnlinePlatformSteam.cpp -------------------------------------------------------------------------------- /Source/OnlinePlatformSteam/OnlinePlatformSteam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/OnlinePlatformSteam/OnlinePlatformSteam.cs -------------------------------------------------------------------------------- /Source/OnlinePlatformSteam/OnlinePlatformSteam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/OnlinePlatformSteam/OnlinePlatformSteam.h -------------------------------------------------------------------------------- /Source/OnlinePlatformSteamEditorTarget.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/OnlinePlatformSteamEditorTarget.Build.cs -------------------------------------------------------------------------------- /Source/OnlinePlatformSteamTarget.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/OnlinePlatformSteamTarget.Build.cs -------------------------------------------------------------------------------- /Source/Steamworks/.gitignore: -------------------------------------------------------------------------------- 1 | !Binaries/ 2 | -------------------------------------------------------------------------------- /Source/Steamworks/Binaries/.gitignore: -------------------------------------------------------------------------------- 1 | !*.* 2 | *.DS_Store 3 | -------------------------------------------------------------------------------- /Source/Steamworks/Binaries/Linux/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/Binaries/Linux/libsteam_api.so -------------------------------------------------------------------------------- /Source/Steamworks/Binaries/Mac/libsteam_api.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/Binaries/Mac/libsteam_api.dylib -------------------------------------------------------------------------------- /Source/Steamworks/Binaries/Windows/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/Binaries/Windows/steam_api64.dll -------------------------------------------------------------------------------- /Source/Steamworks/Binaries/Windows/steam_api64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/Binaries/Windows/steam_api64.lib -------------------------------------------------------------------------------- /Source/Steamworks/LICENSE: -------------------------------------------------------------------------------- 1 | Steamworks SDK 2 | https://partner.steamgames.com/doc/sdk 3 | -------------------------------------------------------------------------------- /Source/Steamworks/Steamworks.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/Steamworks.Build.cs -------------------------------------------------------------------------------- /Source/Steamworks/isteamapplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamapplist.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamapps.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamappticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamappticket.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamclient.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamcontroller.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamfriends.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamgamecoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamgamecoordinator.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamgameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamgameserver.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamgameserverstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamgameserverstats.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamhtmlsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamhtmlsurface.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamhttp.h -------------------------------------------------------------------------------- /Source/Steamworks/isteaminput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteaminput.h -------------------------------------------------------------------------------- /Source/Steamworks/isteaminventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteaminventory.h -------------------------------------------------------------------------------- /Source/Steamworks/isteammatchmaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteammatchmaking.h -------------------------------------------------------------------------------- /Source/Steamworks/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteammusic.h -------------------------------------------------------------------------------- /Source/Steamworks/isteammusicremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteammusicremote.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamnetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamnetworking.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamnetworkingmessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamnetworkingmessages.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamnetworkingsockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamnetworkingsockets.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamnetworkingutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamnetworkingutils.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamparentalsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamparentalsettings.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamps3overlayrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamps3overlayrenderer.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamremoteplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamremoteplay.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamremotestorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamremotestorage.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamscreenshots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamscreenshots.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamugc.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamuser.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamuserstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamuserstats.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamutils.h -------------------------------------------------------------------------------- /Source/Steamworks/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/isteamvideo.h -------------------------------------------------------------------------------- /Source/Steamworks/matchmakingtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/matchmakingtypes.h -------------------------------------------------------------------------------- /Source/Steamworks/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steam_api.h -------------------------------------------------------------------------------- /Source/Steamworks/steam_api_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steam_api_common.h -------------------------------------------------------------------------------- /Source/Steamworks/steam_api_flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steam_api_flat.h -------------------------------------------------------------------------------- /Source/Steamworks/steam_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steam_api_internal.h -------------------------------------------------------------------------------- /Source/Steamworks/steam_gameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steam_gameserver.h -------------------------------------------------------------------------------- /Source/Steamworks/steamclientpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steamclientpublic.h -------------------------------------------------------------------------------- /Source/Steamworks/steamencryptedappticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steamencryptedappticket.h -------------------------------------------------------------------------------- /Source/Steamworks/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steamhttpenums.h -------------------------------------------------------------------------------- /Source/Steamworks/steamnetworkingfakeip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steamnetworkingfakeip.h -------------------------------------------------------------------------------- /Source/Steamworks/steamnetworkingtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steamnetworkingtypes.h -------------------------------------------------------------------------------- /Source/Steamworks/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steamps3params.h -------------------------------------------------------------------------------- /Source/Steamworks/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steamtypes.h -------------------------------------------------------------------------------- /Source/Steamworks/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlaxEngine/OnlinePlatformSteam/HEAD/Source/Steamworks/steamuniverse.h --------------------------------------------------------------------------------