| 
					
				 | 
			
			
				@@ -12,6 +12,7 @@ namespace UI.MatchingCompetition 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public GComponent m_head; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public GTextField m_nameText; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public GTextField m_countText; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        public GTextField m_descText; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public const string URL = "ui://ri3cveycp3ft1q"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public const string PACKAGE_NAME = "MatchingCompetition"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public const string RES_NAME = "Component6"; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -64,6 +65,7 @@ namespace UI.MatchingCompetition 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_head = (GComponent)comp.GetChild("head"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_nameText = (GTextField)comp.GetChild("nameText"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_countText = (GTextField)comp.GetChild("countText"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            m_descText = (GTextField)comp.GetChild("descText"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         public void Dispose(bool disposeTarget = false) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         { 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -72,6 +74,7 @@ namespace UI.MatchingCompetition 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_head = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_nameText = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             m_countText = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            m_descText = null; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if(disposeTarget && target != null) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 target.RemoveFromParent(); 
			 |