changeset 119:52d79502447c

Make few variables un-public.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 31 May 2011 20:22:18 +0300
parents f5614b5d4aaa
children 72a89cda875a
files game/Engine.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/game/Engine.java	Tue May 31 18:59:12 2011 +0300
+++ b/game/Engine.java	Tue May 31 20:22:18 2011 +0300
@@ -204,9 +204,9 @@
     float pscale, ptime;
 
     public boolean flagGameOver;
-    public int gameScore;
+    int gameScore;
 
-    public Piece currPiece, nextPiece;
+    Piece currPiece, nextPiece;
     int currX, currY, currPoint;
 
     Sound sndPlaced;