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