├── .gitattributes ├── .gitignore ├── Documentation ├── ConditionalCompilationSymbols.JPG ├── ConfigurationManager.JPG ├── MonoGameSteamworksNet_01.png └── MonoGameSteamworksNet_03.jpg ├── LICENSE.txt ├── README.md ├── Samples ├── AchievementHunter │ ├── AchievementHunter.csproj │ ├── AchievementSample.cs │ ├── Classes │ │ └── StatsAndAchievements.cs │ ├── Content │ │ ├── Content.mgcb │ │ ├── Font.spritefont │ │ └── Ship.png │ ├── Icon.bmp │ ├── Icon.ico │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.manifest │ ├── steam_api.dll │ └── steam_appid.txt ├── Hello Steamworks.Net │ ├── Content │ │ ├── Content.mgcb │ │ └── Font.spritefont │ ├── Hello Steamworks.Net.csproj │ ├── HelloSteamworks.cs │ ├── Icon.bmp │ ├── Icon.ico │ ├── MonoGame.Framework.dll.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.manifest │ ├── packages.config │ ├── steam_api.dll │ └── steam_appid.txt └── Steamworks.Net MonoGame Integration │ ├── Content │ ├── Content.mgcb │ └── Font.spritefont │ ├── Icon.bmp │ ├── Icon.ico │ ├── MonoGame.Framework.dll.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Steamworks.Net MonoGame Integration.csproj │ ├── SteamworksIntegration.cs │ ├── app.manifest │ ├── packages.config │ ├── steam_api.dll │ └── steam_appid.txt ├── Steamworks.Net MonoGame Integration.sln ├── Steamworks.Net MonoGame Integration.sln.DotSettings └── Steamworks.Net ├── LICENSE.txt ├── README.md ├── libs-x86 ├── OSX-Linux │ ├── Steamworks.NET.dll │ └── libsteam_api.so └── Windows │ ├── Steamworks.NET.dll │ └── steam_api.dll ├── libs-x86_64 ├── OSX-Linux │ ├── Steamworks.NET.dll │ └── libsteam_api.so └── Windows │ ├── Steamworks.NET.dll │ └── steam_api64.dll ├── steam_api.bundle └── Contents │ ├── Info.plist │ └── MacOS │ └── libsteam_api.dylib └── steam_appid.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/ConditionalCompilationSymbols.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Documentation/ConditionalCompilationSymbols.JPG -------------------------------------------------------------------------------- /Documentation/ConfigurationManager.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Documentation/ConfigurationManager.JPG -------------------------------------------------------------------------------- /Documentation/MonoGameSteamworksNet_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Documentation/MonoGameSteamworksNet_01.png -------------------------------------------------------------------------------- /Documentation/MonoGameSteamworksNet_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Documentation/MonoGameSteamworksNet_03.jpg -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/README.md -------------------------------------------------------------------------------- /Samples/AchievementHunter/AchievementHunter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/AchievementHunter.csproj -------------------------------------------------------------------------------- /Samples/AchievementHunter/AchievementSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/AchievementSample.cs -------------------------------------------------------------------------------- /Samples/AchievementHunter/Classes/StatsAndAchievements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/Classes/StatsAndAchievements.cs -------------------------------------------------------------------------------- /Samples/AchievementHunter/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/Content/Content.mgcb -------------------------------------------------------------------------------- /Samples/AchievementHunter/Content/Font.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/Content/Font.spritefont -------------------------------------------------------------------------------- /Samples/AchievementHunter/Content/Ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/Content/Ship.png -------------------------------------------------------------------------------- /Samples/AchievementHunter/Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/Icon.bmp -------------------------------------------------------------------------------- /Samples/AchievementHunter/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/Icon.ico -------------------------------------------------------------------------------- /Samples/AchievementHunter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/Program.cs -------------------------------------------------------------------------------- /Samples/AchievementHunter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/AchievementHunter/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/app.manifest -------------------------------------------------------------------------------- /Samples/AchievementHunter/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/AchievementHunter/steam_api.dll -------------------------------------------------------------------------------- /Samples/AchievementHunter/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 480 -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/Content/Content.mgcb -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/Content/Font.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/Content/Font.spritefont -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/Hello Steamworks.Net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/Hello Steamworks.Net.csproj -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/HelloSteamworks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/HelloSteamworks.cs -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/Icon.bmp -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/Icon.ico -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/MonoGame.Framework.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/MonoGame.Framework.dll.config -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/Program.cs -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/app.manifest -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/packages.config -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Hello Steamworks.Net/steam_api.dll -------------------------------------------------------------------------------- /Samples/Hello Steamworks.Net/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 480 -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/Content/Content.mgcb -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/Content/Font.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/Content/Font.spritefont -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/Icon.bmp -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/Icon.ico -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/MonoGame.Framework.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/MonoGame.Framework.dll.config -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/Program.cs -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/Steamworks.Net MonoGame Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/Steamworks.Net MonoGame Integration.csproj -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/SteamworksIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/SteamworksIntegration.cs -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/app.manifest -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/packages.config -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Samples/Steamworks.Net MonoGame Integration/steam_api.dll -------------------------------------------------------------------------------- /Samples/Steamworks.Net MonoGame Integration/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 480 -------------------------------------------------------------------------------- /Steamworks.Net MonoGame Integration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net MonoGame Integration.sln -------------------------------------------------------------------------------- /Steamworks.Net MonoGame Integration.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net MonoGame Integration.sln.DotSettings -------------------------------------------------------------------------------- /Steamworks.Net/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/LICENSE.txt -------------------------------------------------------------------------------- /Steamworks.Net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/README.md -------------------------------------------------------------------------------- /Steamworks.Net/libs-x86/OSX-Linux/Steamworks.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/libs-x86/OSX-Linux/Steamworks.NET.dll -------------------------------------------------------------------------------- /Steamworks.Net/libs-x86/OSX-Linux/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/libs-x86/OSX-Linux/libsteam_api.so -------------------------------------------------------------------------------- /Steamworks.Net/libs-x86/Windows/Steamworks.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/libs-x86/Windows/Steamworks.NET.dll -------------------------------------------------------------------------------- /Steamworks.Net/libs-x86/Windows/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/libs-x86/Windows/steam_api.dll -------------------------------------------------------------------------------- /Steamworks.Net/libs-x86_64/OSX-Linux/Steamworks.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/libs-x86_64/OSX-Linux/Steamworks.NET.dll -------------------------------------------------------------------------------- /Steamworks.Net/libs-x86_64/OSX-Linux/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/libs-x86_64/OSX-Linux/libsteam_api.so -------------------------------------------------------------------------------- /Steamworks.Net/libs-x86_64/Windows/Steamworks.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/libs-x86_64/Windows/Steamworks.NET.dll -------------------------------------------------------------------------------- /Steamworks.Net/libs-x86_64/Windows/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/libs-x86_64/Windows/steam_api64.dll -------------------------------------------------------------------------------- /Steamworks.Net/steam_api.bundle/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/steam_api.bundle/Contents/Info.plist -------------------------------------------------------------------------------- /Steamworks.Net/steam_api.bundle/Contents/MacOS/libsteam_api.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BlizzCrafter/Steamworks.Net-MonoGame-Integration/HEAD/Steamworks.Net/steam_api.bundle/Contents/MacOS/libsteam_api.dylib -------------------------------------------------------------------------------- /Steamworks.Net/steam_appid.txt: -------------------------------------------------------------------------------- 1 | 480 --------------------------------------------------------------------------------