Plato on Github
Report Home
src/sprite/manager.js
Maintainability
137.49
Lines of code
18
Difficulty
7.50
Estimated Errors
0.08
Function weight
By Complexity
By SLOC
define('lyria/sprite/manager', ['jquery', 'mixer', 'lyria/component', 'lyria/sprite/renderer'], function($, mixer, Component, Renderer) { var SpriteManager = (function() { var SpriteManager = function() { var type = 'SpriteManager'; mixer([this, SpriteManager.prototype], new Component(type)); this.type = type; }; return SpriteManager; })(); return SpriteManager; });