You know those games you used to play with numbers on the side that when you filled in the correct cells on a grid, it formed a picture?
Of course you don't! But that's what this is!
Take a picture, use existing pictures on your mobile device, or even pictures from the internet! Transform these in to playable games.
Share with your friends (TBI) Race against people (TBI) And play an infinite number of games! All for free!
- Pull the code.
- Import in to Eclipse.
- Code.
So, this puzzle is normally called:
* Griddler
* Nonogram.
* Hanjie
* Paint by Numbers
The numbers on the left and top of the grid represent the number of blocks you have in a consecutive row. They can be multiple colors, and in some cases, can be triangles (We're not interested in this). You build your picture based on these hints. So if we have a grid that looks like such:
2 | 4 | 4 | 2 | |
---|---|---|---|---|
2 | ||||
4 | ||||
4 | ||||
2 |
Becomes:
2 | 4 | 4 | 2 | |
---|---|---|---|---|
2 | X | X | ||
4 | X | X | X | X |
4 | X | X | X | X |
2 | X | X |
You can find more out here.