You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			831 B
		
	
	
	
		
			C#
		
	
			
		
		
	
	
			36 lines
		
	
	
		
			831 B
		
	
	
	
		
			C#
		
	
| /** This is an automatically generated class by FairyGUI. Please do not modify it. **/
 | |
| 
 | |
| using FairyGUI;
 | |
| using FairyGUI.Utils;
 | |
| 
 | |
| namespace Game.Battle
 | |
| {
 | |
| 	public partial class ViewComboItem : GComponent
 | |
| 	{
 | |
| 		public GGraph m_n0;
 | |
| 		public GTextField m_SkillName;
 | |
| 		public GTextField m_CastCount;
 | |
| 		public GList m_ComboList;
 | |
| 
 | |
| 		public const string URL = "ui://2qo7xpdcoby13t";
 | |
| 
 | |
| 		public static ViewComboItem CreateInstance()
 | |
| 		{
 | |
| 			return (ViewComboItem)UIPackage.CreateObject("Battle","ComboItem");
 | |
| 		}
 | |
| 
 | |
| 		public ViewComboItem()
 | |
| 		{
 | |
| 		}
 | |
| 
 | |
| 		public override void ConstructFromXML(XML xml)
 | |
| 		{
 | |
| 			base.ConstructFromXML(xml);
 | |
| 
 | |
| 			m_n0 = (GGraph)this.GetChild("n0");
 | |
| 			m_SkillName = (GTextField)this.GetChild("SkillName");
 | |
| 			m_CastCount = (GTextField)this.GetChild("CastCount");
 | |
| 			m_ComboList = (GList)this.GetChild("ComboList");
 | |
| 		}
 | |
| 	}
 | |
| } |