package com.guru.project.component
{
	import com.guru.component.sectionStructure.SectionStructureSectionBase;
	import com.guru.project.component.step.ComponentStep0;
	import com.guru.project.component.step.ComponentStep1;
	import com.guru.project.component.step.ComponentStep2;
	import flash.display.MovieClip;
	/**
	 * ...
	 * @author Eddy Lee
	 */
	public class ComponentSection extends SectionStructureSectionBase
	{
		
		public function ComponentSection(pTimeline_mc:MovieClip)
		{
			super(pTimeline_mc);
			
			mStepClass_array = [ComponentStep0, ComponentStep1, ComponentStep2];
			
			this.gotoStep(0);
		}
		
	}

}