diff options
author | Carsten Weisse <[email protected]> | 2004-10-26 18:18:19 +0000 |
---|---|---|
committer | Carsten Weisse <[email protected]> | 2004-10-26 18:18:19 +0000 |
commit | 337f732145b18ab28c3c1b38f986c32dd6de3eb7 (patch) | |
tree | 8d785ed34434c01c96d105029115b1b1a1001c46 | |
parent | 9db92c11ce4d047e1661707378dd574626ec038f (diff) |
PlaySound needs it public
-rw-r--r-- | src/jake2/client/client_state_t.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jake2/client/client_state_t.java b/src/jake2/client/client_state_t.java index 11a3af7..d9df9fa 100644 --- a/src/jake2/client/client_state_t.java +++ b/src/jake2/client/client_state_t.java @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // Created on 27.11.2003 by RST. -//$Id: client_state_t.java,v 1.3 2004-07-09 06:50:50 hzi Exp $ +//$Id: client_state_t.java,v 1.4 2004-10-26 18:18:19 cawe Exp $ package jake2.client; @@ -86,7 +86,7 @@ public class client_state_t { // and teleport direction changes public float[] viewangles = { 0, 0, 0 }; - int time; // this is the time value that the client + public int time; // this is the time value that the client // is rendering at. always <= cls.realtime float lerpfrac; // between oldframe and frame |