1
0
Fork 0
This repository has been archived on 2024-01-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Voxel-Test/VBO/src/mrdev023/blocks/GrassBlock.java
2015-07-31 15:37:32 +02:00

14 lines
246 B
Java

package mrdev023.blocks;
import mrdev023.math.*;
public class GrassBlock extends Block{
public GrassBlock() {
super(new Color4f(0.2f,0.6f,0f));
}
public String toString() {
return this.getClass().getSimpleName();
}
}