16 lines
		
	
	
		
			486 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			486 B
		
	
	
	
		
			C#
		
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using UnityEngine;
 | |
| 
 | |
| namespace MMO
 | |
| {
 | |
|     public class MMOInviteList : MMOListView<MMOInviteCell>
 | |
|     {
 | |
|         public override int Count => MMOAPIRequestManager.Instance.GetData<MMORespondInviteProgress>().UserList.Length;
 | |
| 
 | |
|         protected override void ConfigCell(MMOInviteCell pCell)
 | |
|         {
 | |
|             pCell.ConfigInvite(MMOAPIRequestManager.Instance.GetData<MMORespondInviteProgress>().UserList[pCell.Index]);
 | |
|         }
 | |
|     }
 | |
| } |