Back to project page Tetris-Evolution.
The source code is released under:
GNU General Public License
If you think the Android project Tetris-Evolution listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.mygdx.blocks; // ww w . j ava2 s .c o m public class Level { private int[] blocksId; private int[] values; private int[] responses; public Level(int[] blocksId, int[] values, int[] responses){ setBlocksId(blocksId); setValues(values); setResponses(responses); } public int[] getBlocksId() { return blocksId; } public void setBlocksId(int[] blocksId) { this.blocksId = blocksId; } public int[] getValues() { return values; } public void setValues(int[] values) { this.values = values; } public int[] getResponses() { return responses; } public void setResponses(int[] responses) { this.responses = responses; } }