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/blocks/FirLeafBlock.java
2015-07-15 17:19:40 +02:00

11 lines
160 B
Java

package blocks;
import math.Color4f;
public class FirLeafBlock extends Block{
public FirLeafBlock() {
super(new Color4f(0.0f,0.4f,0f));
}
}