Skip to content
Permalink
58879c4dcb
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
21 lines (16 sloc) 373 Bytes
package game.level.tiles;
import game.graphics.Texture;
import game.math.Matrix4f;
public class StoneFloor extends Tile{
public StoneFloor(float x, float y) {
position.x = x;
position.y = y;
texture = new Texture("res/sprites/stoneFloor.png");
ml_matrix = Matrix4f.translate(position);
isWall = false;
}
@Override
public void update() {
return;
}
}