Code cleanup in Window class and improved comments in other classes.

This commit is contained in:
t-moe
2016-06-24 23:29:08 +02:00
parent ef0cdb4764
commit b217734b49
5 changed files with 137 additions and 82 deletions

View File

@@ -1,13 +1,15 @@
### **7not7**
### *A 7x7 clone written in java*
This page should be viewed on [Github](https://github.com/id101010/7not7)
---
### Summary
7x7 is a concentration game which challenges you to connect 4 or more blocks of the same color on the game field.
To make things harder each round n blocks of random colors get thrown upon the field and the number n increases with each level.
You can choose the field size to be eighter 7x7, 8x8, 9x9 or 10x10.
You can choose the field size to be either 7x7, 8x8, 9x9 or 10x10.
![Moving Blocks](https://github.com/id101010/7not7/blob/master/doc/movingBlocks.png)
@@ -15,6 +17,7 @@ You can choose the field size to be eighter 7x7, 8x8, 9x9 or 10x10.
The goal is to clear as much lines as possible by stacking blocks of the same color in any direction.
So you can eighter build up blocks vertically, horizontally or diagonal.
To move blocks click on the block you want to move, hold the mouse and release it on the target position.
### Tools and how to get them