mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 09:58:39 +00:00
14 lines
422 B
JavaScript
14 lines
422 B
JavaScript
(function (jsOMS, undefined) {
|
|
jsOMS.Autoloader.defineNamespace('jsOMS.UI.Input');
|
|
|
|
jsOMS.UI.Input.InputManager = function ()
|
|
{
|
|
this.keyBoardManager = new jsOMS.UI.Input.Keyboard.KeyboardManager();
|
|
};
|
|
|
|
jsOMS.UI.Input.InputManager.prototype.getKeyboardManager = function()
|
|
{
|
|
return this.keyBoardManager;
|
|
};
|
|
}(window.jsOMS = window.jsOMS || {}));
|