From 78e2d55cb7912c09d615fa86fdb0a8e4b37de1b3 Mon Sep 17 00:00:00 2001 From: Jeremiah Billmann Date: Fri, 28 Jun 2013 23:38:40 -0400 Subject: [PATCH] Yup, minor formatting --- client/garageserver.io.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/client/garageserver.io.js b/client/garageserver.io.js index 69f44d3..5af81fb 100644 --- a/client/garageserver.io.js +++ b/client/garageserver.io.js @@ -19,7 +19,7 @@ options = { window.GarageServerIO = (function (window, socketio) { - function StateController () { + function StateController() { this.state = {}; this.time; this.frameTime = new Date().getTime(); @@ -37,12 +37,12 @@ window.GarageServerIO = (function (window, socketio) { } }; - function Input (input, seq) { + function Input(input, seq) { this.input = input; this.seq = seq; } - function InputController () { + function InputController() { this.inputs = []; this.sequenceNumber = 1; } @@ -70,7 +70,7 @@ window.GarageServerIO = (function (window, socketio) { this.time = time; } - function Player (id) { + function Player(id) { this.updates = []; this.id = id; } @@ -116,7 +116,7 @@ window.GarageServerIO = (function (window, socketio) { } }; - function PlayerController () { + function PlayerController() { this.players = []; } PlayerController.prototype = {