1
0
Fork 0

First Commit

This commit is contained in:
MrDev023 2015-07-15 17:19:40 +02:00
commit 5ccf998834
34 changed files with 1608 additions and 0 deletions

View file

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