1  /**
     2   * com.sekati.core.FWDepth
     3   * @version 1.0.3
     4   * @author jason m horwitz | sekati.com
     5   * Copyright (C) 2007  jason m horwitz, Sekat LLC. All Rights Reserved.
     6   * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
     7   */
     8   
     9  /**
    10   * FrameWork Depth Manager to avoid collisions, uses negative depths for safety where appropriate
    11   */
    12  class com.sekati.core.FWDepth {
    13  
    14  	public static var ExpressInstall:Number = 10000000;
    15  	public static var BaseLoader:Number = 15999;
    16  	public static var FramePulse:Number = -666;
    17  	public static var FLVAudioContainer:Number = -667;
    18  	public static var SoundCenter:Number = -668;
    19  	public static var ScreenProtector:Number = 9996;
    20  	public static var FauxView:Number = 9995;
    21  
    22  	private function FWDepth() {
    23  	}
    24  }