| 
					
				 | 
			
			
				@@ -15,6 +15,7 @@ namespace UI.Friend 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public GButton m_btnAdd; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public GList m_list; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public GButton m_btnSendAll; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        public GTextField m_txtPowerCount; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public const string URL = "ui://wez2ujnnjdju0"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public const string PACKAGE_NAME = "Friend"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public const string RES_NAME = "FriendUI"; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -70,6 +71,7 @@ namespace UI.Friend 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_btnAdd = (GButton)comp.GetChild("btnAdd"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_list = (GList)comp.GetChild("list"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_btnSendAll = (GButton)comp.GetChild("btnSendAll"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            m_txtPowerCount = (GTextField)comp.GetChild("txtPowerCount"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public void Dispose(bool disposeTarget = false) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -81,6 +83,7 @@ namespace UI.Friend 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_btnAdd = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_list = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_btnSendAll = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            m_txtPowerCount = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if(disposeTarget && target != null) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 target.RemoveFromParent(); 
			 |