///////////////////////////////////////////////////////////////////////////////// // 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 mvc.controller.Controllers; import mvc.model.Models; import mvc.view.View; import wk.mvcs.WK_InitMVCS; /** * @autor Wolfgang Kowarschick * @category class * @langversion 3.0 */ public class Main extends MovieClip { ///////////////////////////////////////////////////////////////////////////// // Properties ///////////////////////////////////////////////////////////////////////////// public var mc_view: View; ///////////////////////////////////////////////////////////////////////////// // Constructor ///////////////////////////////////////////////////////////////////////////// public function Main() { super(); // Now, as all components have been loaded: Initialize all components. WK_InitMVCS.instance.init(); } ///////////////////////////////////////////////////////////////////////////// // End of class ///////////////////////////////////////////////////////////////////////////// } } ///////////////////////////////////////////////////////////////////////////////// // End of File /////////////////////////////////////////////////////////////////////////////////