Linked user page with friends list

This commit is contained in:
Pierre 2018-01-13 18:55:59 +01:00
parent df91120b66
commit 71e9cb163f

View File

@ -411,4 +411,17 @@ public class GetUsersHelper {
return userInfos;
}
/**
* This interface is implemented on activities that can open users page
*/
public interface onOpenUsersPageListener {
/**
* On a user page specified by its id
*
* @param userID The ID of the user to create page
*/
void openUserPage(int userID);
}
}