Skip to content
Permalink
5d348e1b9a
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
26 lines (18 sloc) 400 Bytes
package game.level.tiles;
import game.graphics.Texture;
import game.graphics.VertexArray;
public class SmoothFloor extends Tile{
public SmoothFloor() {
super();
texture = new Texture("/res/SmoothFloor.png");
}
@Override
public void render() {
// TODO Auto-generated method stub
texture.bind();
}
@Override
public void update() {
// TODO Auto-generated method stub
}
}