Plato on Github
Report Home
src/layer.js
Maintainability
147.35
Lines of code
21
Difficulty
6.40
Estimated Errors
0.04
Function weight
By Complexity
By SLOC
define(['mixedice', './gameobject'], function(mixedice, GameObject) { 'use strict'; /** * @module lyria/layer */ return (function() { /** * @class Layer * @extends Lyria.GameObject * @constructor */ var Layer = function() { mixedice(this.prototype, new GameObject()); }; return Layer; })(); });