Skip to content

Commit 4d2f042

Browse files
committed
I… don't remember.
1 parent eb4e188 commit 4d2f042

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/com/androidmontreal/rhok/WaterSupplyGame.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
import com.badlogic.gdx.ApplicationListener;
1313
import com.badlogic.gdx.Gdx;
1414
import com.badlogic.gdx.graphics.GL10;
15-
import com.badlogic.gdx.graphics.Texture;
1615
import com.badlogic.gdx.graphics.g2d.Sprite;
1716
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
1817

@@ -27,7 +26,7 @@ public class WaterSupplyGame implements ApplicationListener {
2726

2827
private double steps;
2928

30-
List<Piece> pieces;
29+
private List<Piece> pieces;
3130

3231
private Hashtable<PipeType, Sprite> pipeSprites;
3332
private Board board;
@@ -42,7 +41,7 @@ public void create() {
4241

4342
board = new Board(TABLE_WIDTH, TABLE_HEIGHT, screenDims);
4443

45-
initializePipeTypes();
44+
// initializePipeTypes();
4645
// initializeSomePieces();
4746

4847

@@ -51,7 +50,7 @@ public void create() {
5150
}
5251

5352
private void initializeSomePieces() {
54-
53+
5554
for (int x = 0; x < TABLE_WIDTH; x++) {
5655

5756
for (int y = 0; y < TABLE_HEIGHT; y++) {

src/com/androidmontreal/rhok/pieces/Pipe.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*/
1111

1212
public class Pipe implements Piece {
13-
13+
1414
public enum PipeType{
1515
TOP_LEFT, TOP_RIGHT, DOWN_RIGHT, DOWN_LEFT, HORIZONTAL, VERTICAL, BLANK;
1616
}

0 commit comments

Comments
 (0)