mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
changed function XXX( to function XXX (
This commit is contained in:
parent
7e5eeb0a27
commit
76daceb2e7
22 changed files with 22 additions and 22 deletions
|
|
@ -5,7 +5,7 @@ define([
|
|||
|
||||
function (Box2D, Parent) {
|
||||
|
||||
function Detector(me) {
|
||||
function Detector (me) {
|
||||
Parent.call(this);
|
||||
this.me = me;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
define(["Game/Core/Control/InputController", "Game/Client/Control/KeyboardInput"], function (InputController, KeyboardInput){
|
||||
|
||||
function KeyboardController(me, gameController) {
|
||||
function KeyboardController (me, gameController) {
|
||||
|
||||
this.gameController = gameController;
|
||||
this.inputController = new InputController(me);
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ define([
|
|||
|
||||
function (ProtocolHelper, GameController) {
|
||||
|
||||
function Networker(socketLink) {
|
||||
function Networker (socketLink) {
|
||||
this.socketLink = socketLink;
|
||||
this.gameController = null;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
define(['Lib/Vendor/Three', 'Game/Config/Settings'], function (Three, Settings) {
|
||||
|
||||
function CameraController(isOrthographic) {
|
||||
function CameraController (isOrthographic) {
|
||||
|
||||
isOrthographic = typeof isOrthographic == 'undefined'
|
||||
? true
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ var requires = [
|
|||
|
||||
define(requires, function (DomController, Three, Settings, CameraController){
|
||||
|
||||
function ViewController(){
|
||||
function ViewController (){
|
||||
|
||||
this.mesh = null;
|
||||
this.scene = null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue