mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
When we require a singleton, its instance name should be named by lowercase, since it is not a class. Relates to #128
22 lines
No EOL
296 B
JavaScript
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;
|
|
|
|
}); |