chuck.js/app/Game/Client/View/Mesh.js
logsol 3cb2e39a18 Makes singleton variable name of NotificationCenter lowercase
When we require a singleton, its instance name should be named
by lowercase, since it is not a class.

Relates to #128
2016-10-10 22:11:55 +02:00

22 lines
No EOL
296 B
JavaScript

define([
'Game/Config/Settings',
'Lib/Utilities/NotificationCenter',
"Lib/Vendor/Stats",
"Lib/Vendor/Screenfull"
],
function (Settings, nc, Stats, Screenfull) {
"use strict";
function Mesh() {
}
Mesh.prototype.render = function() {
};
return Mesh;
});