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