1
0
Fork 0
This commit is contained in:
MrDev023 2015-07-21 14:29:39 +02:00
parent d6b9d09d50
commit 1e19b37301
32 changed files with 457 additions and 292 deletions

View file

@ -0,0 +1,10 @@
package mrdev023.blocks;
import mrdev023.math.*;
public class GrassBlock extends Block{
public GrassBlock() {
super(new Color4f(0.2f,0.6f,0f));
}
}