Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~177 People Reached
Favorite Forums
Favorite Tags
java x 3
Member Avatar for adetya

[code=java] public class GameOfLife implements GameInterface { private boolean[][] originalMap, // The initial cell configuration map, // The current cell configuration newMap; // The next generation configuration private GameGUI gui; private int generation = 0; private FileIO fileIO; // GameOfLife constructor public GameOfLife() { originalMap = new boolean[MAX_ROWS][MAX_COLS]; map = …

Member Avatar for masijade
0
177