You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The greenworks docs have this example, is the same possible with steamworks.js?
var greenworks = require('./greenworks');
if (greenworks.init()) {
// Get the number of regular friends.
console.log(greenworks.getFriendCount(greenworks.FriendFlags.Immediate));
var friends = greenworks.getFriends(greenworks.FriendFlags.Immediate);
for (var i = 0; i < friends.length; ++i) {
console.log(friends[i].getPersonaName());
greenworks.requestUserInformation(friends[i].getRawSteamID(), true);
}
}
The text was updated successfully, but these errors were encountered:
The greenworks docs have this example, is the same possible with steamworks.js?
The text was updated successfully, but these errors were encountered: