///////////////////////////////////////////////////////////////////////////////// // 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 die.controller { import die.model.Models; import wk.mvcs.controller.WK_Controllers; /** * @autor Wolfgang Kowarschick * @category class * @langversion 3.0 */ public class Controllers extends WK_Controllers { ///////////////////////////////////////////////////////////////////////////// // Singleton ///////////////////////////////////////////////////////////////////////////// public static const instance: Controllers = WK_Controllers.instance(Controllers) as Controllers; public function Controllers() { super(Object(this).constructor); } ///////////////////////////////////////////////////////////////////////////// // Attributes ///////////////////////////////////////////////////////////////////////////// public const controller: IControllerDice = new ControllerDice(); ///////////////////////////////////////////////////////////////////////////// // End of class ///////////////////////////////////////////////////////////////////////////// } } ///////////////////////////////////////////////////////////////////////////////// // End of File /////////////////////////////////////////////////////////////////////////////////