コード例 #1
0
 private void GetCommentInfo(CommentsRes res)
 {
     _friendModel = GetData <FriendModel>();
     _friendModel.InitCommentList(res);
     //GetApplyRes();
     MakeFriendsView.SetData(_friendModel);
 }
コード例 #2
0
 private void RefreshCommentCallBack(CommentsRes res)
 {
     LoadingOverlay.Instance.Hide();
     FlowText.ShowMessage(I18NManager.Get("Shop_RefreshTips"));
     _friendModel.RefreshTime = res.RefreshTime;
     _friendModel.UpdateCommentList(res.FriendBases);
     MakeFriendsView.SetData(_friendModel);
 }
コード例 #3
0
ファイル: FriendModel.cs プロジェクト: linxscc/LoveGame
 public void InitCommentList(CommentsRes res)
 {
     FriendCommentList = res.FriendBases;
     RefreshTime       = res.RefreshTime;
 }