This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package justpinegames | |
{ | |
public class ComponentConstraint | |
{ | |
public static const HORIZONTAL_CONSTRAINT_LEFT:String = "left"; | |
public static const HORIZONTAL_CONSTRAINT_CENTER:String = "center"; | |
public static const HORIZONTAL_CONSTRAINT_RIGHT:String = "right"; | |
public static const VERTICAL_CONSTRAINT_TOP:String = "top"; | |
public static const VERTICAL_CONSTRAINT_MIDDLE:String = "middle"; | |
public static const VERTICAL_CONSTRAINT_BOTTOM:String = "bottom"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package FoxholeYAML | |
{ | |
import flash.geom.Point; | |
import flash.utils.Dictionary; | |
import org.josht.starling.foxhole.layout.ILayout; | |
import org.josht.starling.foxhole.layout.LayoutBoundsResult; | |
import org.josht.starling.foxhole.layout.ViewPortBounds; | |
import org.osflash.signals.ISignal; | |
import org.osflash.signals.Signal; | |
import starling.display.DisplayObject; |