///////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2010 Wolfgang Kowarschick // // Permission is granted to copy, distribute and/or modify this document // under the terms of the WK License, Version 1.0 (WKL 1.0) or any later // version published by Wolfgang Kowarschick. ///////////////////////////////////////////////////////////////////////////////// package { import flash.display.MovieClip; import wk.example.butterfly.WK_ButterflyFlying; import fl.controls.TextInput; import fl.controls.Button; /** * @autor Wolfgang Kowarschick * @category class * @langversion 3.0 */ public class WK_ButterflyMain extends MovieClip { ///////////////////////////////////////////////////////////////////////////// // Attributes ///////////////////////////////////////////////////////////////////////////// public var wK_ButterflyFlying: WK_ButterflyFlying; public var wK_ButterflyFlying: WK_ButterflyFlying = new WK_ButterflyFlying(); public var textInput: TextInput = new TextInput(); public var button: Button = new Button(); ///////////////////////////////////////////////////////////////////////////// // Constructor ///////////////////////////////////////////////////////////////////////////// public function WK_ButterflyMain() { super(); } ///////////////////////////////////////////////////////////////////////////// // End of class ///////////////////////////////////////////////////////////////////////////// } } ///////////////////////////////////////////////////////////////////////////////// // End of File /////////////////////////////////////////////////////////////////////////////////