From 102789ada5663159cefbec030df8a26a1c55e832 Mon Sep 17 00:00:00 2001 From: Jeremiah Billmann Date: Wed, 31 Jul 2013 19:22:59 -0400 Subject: [PATCH] Documentation --- documentation/QuickStart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/QuickStart.md b/documentation/QuickStart.md index d1e885d..9aef636 100644 --- a/documentation/QuickStart.md +++ b/documentation/QuickStart.md @@ -79,7 +79,7 @@ GarageServerIO.initializeGarageServer('http://insertmygameurlhere.com', { ```js GarageServerIO.addInput(myInput); ``` -**3.** Inside render loop, extract player and entity states - this will retrieve the current states based on your interpolation, prediction and smoothing settings. Players are effectively clients whereas entities are determined by players inputs and controlled by the server. +**3.** Inside render loop, extract player and entity states - this will retrieve the current states based on your interpolation, prediction and smoothing settings. Players are effectively clients connected to GarageServer.IO whereas entities are determined by players inputs and controlled by the server. ```js var playerStates = GarageServerIO.getPlayerStates(), entityStates = GarageServerIO.getEntityStates();