-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a function file for our steamcmd usage
Related to the work for #169!
- Loading branch information
1 parent
e1647d9
commit afb158c
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
include_once('paths.php'); | ||
|
||
/* Small utility function, add creative description | ||
Fetch and return icon from steamcmd | ||
Unsure on the overlap between this and functions_steam | ||
*/ | ||
function getAppIcon( $appid ) { | ||
|
||
global $steamcmdPath; | ||
|
||
|
||
// this returns the hash ‘e3f595a92552da3d664ad00277fad2107345f743’ for appid 440 | ||
return $icon; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters