Skip to content

Commit

Permalink
Rename and poco más
Browse files Browse the repository at this point in the history
  • Loading branch information
valerangel committed Aug 19, 2021
1 parent 294d700 commit 79253c4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.idea/
out/
LifeGame_v1.iml
GameOfLife.iml
4 changes: 2 additions & 2 deletions src/main.java → src/Main.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
public class main {
public class Main {

public static void main(String[] args) {

GameOfLife gameOfLife = new GameOfLife(15, 20);
GameOfLife gameOfLife = new GameOfLife(20, 20);
Paint paint = new Paint(gameOfLife);

for (int i = 0; i < 1000; i++) {
Expand Down
2 changes: 1 addition & 1 deletion src/Paint.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import java.awt.*;

public class Paint {
private final int LENGTH = 60;
private final int LENGTH = 30;

private JFrame jframe;
private JPanel jpanel;
Expand Down

0 comments on commit 79253c4

Please sign in to comment.