Updated structure of files and folders; edited Readme.md

This commit is contained in:
John Landers
2018-10-24 13:44:27 -05:00
parent a68da04f5b
commit e2c7c9dd05
11 changed files with 197 additions and 239 deletions

7
gameoflife/Main.java Normal file
View File

@@ -0,0 +1,7 @@
import javafx.application.Application;
public class Main {
public static void main(String[] args) {
Application.launch(GameOfLife.class, args);
}
}