diff --git a/classes/CSteamUser.js b/classes/CSteamUser.js index 9ca4564..c70f741 100644 --- a/classes/CSteamUser.js +++ b/classes/CSteamUser.js @@ -148,6 +148,14 @@ CSteamUser.prototype.comment = function(message, callback) { this._community.postUserComment(this.steamID, message, callback); }; +CSteamUser.prototype.deleteComment = function(commentID, callback) { + this._community.deleteUserComment(this.steamID, commentID, callback); +}; + +CSteamUser.prototype.getUserComments = function(options, callback) { + this._community.postUserComment(this.steamID, options, callback); +}; + CSteamUser.prototype.inviteToGroup = function(groupID, callback) { this._community.inviteUserToGroup(this.steamID, groupID, callback); };