Skip to content
Snippets Groups Projects
Commit 39d8f543 authored by JimmyTheCat's avatar JimmyTheCat
Browse files
parents c88438b9 8d33f63b
No related branches found
No related tags found
No related merge requests found
...@@ -140,7 +140,6 @@ public class GameUI extends Application{ ...@@ -140,7 +140,6 @@ public class GameUI extends Application{
int i = rnd.nextInt(3); int i = rnd.nextInt(3);
String imageSymbols = board.currentPlayer == 0 ? getClass().getResource("/textures/1_" + i + ".png").toExternalForm() : String imageSymbols = board.currentPlayer == 0 ? getClass().getResource("/textures/1_" + i + ".png").toExternalForm() :
getClass().getResource("/textures/0_" + i + ".png").toExternalForm(); getClass().getResource("/textures/0_" + i + ".png").toExternalForm();
System.out.println(i);
Image image = new Image(""+ imageSymbols); Image image = new Image(""+ imageSymbols);
ImageView imageView = new ImageView(image); ImageView imageView = new ImageView(image);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment