├── .gitignore ├── README.md ├── index.php └── steam ├── SteamApps.php ├── SteamGame.php ├── SteamUser.php └── SteamUtility.php /.gitignore: -------------------------------------------------------------------------------- 1 | /steam/private/apikey.inc.php 2 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattRyder/SteamAPI/HEAD/README.md -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattRyder/SteamAPI/HEAD/index.php -------------------------------------------------------------------------------- /steam/SteamApps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattRyder/SteamAPI/HEAD/steam/SteamApps.php -------------------------------------------------------------------------------- /steam/SteamGame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattRyder/SteamAPI/HEAD/steam/SteamGame.php -------------------------------------------------------------------------------- /steam/SteamUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattRyder/SteamAPI/HEAD/steam/SteamUser.php -------------------------------------------------------------------------------- /steam/SteamUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MattRyder/SteamAPI/HEAD/steam/SteamUtility.php --------------------------------------------------------------------------------