/** * com.sekati.display.IBaseClip * @version 1.0.3 * @author jason m horwitz | sekati.com * Copyright (C) 2007 jason m horwitz, Sekat LLC. All Rights Reserved. * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php */ import com.sekati.core.CoreInterface; /** * Interface describing {@link com.sekati.display.BaseClip} which is * the foundational building block class for all subclasses to * extend instead of MovieClip. */ interface com.sekati.display.IBaseClip extends CoreInterface { /** * if destroy is not called manually onUnload will fire destroy. */ function onUnload():Void; }