1  /**
     2   * com.sekati.display.IBaseClip
     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  import com.sekati.core.CoreInterface;
    10  
    11  /**
    12   * Interface describing {@link com.sekati.display.BaseClip} which is 
    13   * the foundational building block class for all subclasses to 
    14   * extend instead of MovieClip.
    15   */
    16  interface com.sekati.display.IBaseClip extends CoreInterface {
    17  
    18  	/**
    19  	 * if destroy is not called manually onUnload will fire destroy.
    20  	 */
    21  	function onUnload():Void;
    22  }