home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Puzzle / filler.swf / scripts / mx / containers / BoxDirection.as
Text File  |  2008-09-02  |  444b  |  23 lines

  1. package mx.containers
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class BoxDirection
  8.    {
  9.       
  10.       public static const HORIZONTAL:String = "horizontal";
  11.       
  12.       public static const VERTICAL:String = "vertical";
  13.       
  14.       mx_internal static const VERSION:String = "2.0.1.0";
  15.        
  16.       
  17.       public function BoxDirection()
  18.       {
  19.          super();
  20.       }
  21.    }
  22. }
  23.