Skip to content
Permalink
1f157298c4
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
44 lines (32 sloc) 770 Bytes
package level.tiles;
import java.awt.Color;
public abstract class Tile {
protected int id;
protected boolean isFloor;
protected boolean isWall;
private Color color;
// Contains all tiles in the game, where the index is the tile ID.
private Tile[] gameTiles = new Tile[32];
public Tile(int id, boolean isFloor, boolean isWall, Color color) {
this.id = id;
this.isFloor = isFloor;
this.isWall = isWall;
this.color = color;
// Populate this with all tiles that exist
// gameTiles[1] =
}
public int getId() {
return id;
}
public boolean isFloor() {
return isFloor;
}
public boolean isWall() {
return isWall;
}
// public Tile getTile(int tileID) {
//
// }
public abstract void tick();
public abstract void render();
}