Skip to content

Instantly share code, notes, and snippets.

@dazsim
Created April 29, 2017 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dazsim/bede086518f3da7b4326eb7c4996e46f to your computer and use it in GitHub Desktop.
Save dazsim/bede086518f3da7b4326eb7c4996e46f to your computer and use it in GitHub Desktop.
package com.immersiveminds.beimcraft.tile;
public class TileCeiling extends TileBlock{
public TileCeiling(boolean ins, boolean sus, boolean stab, int ins1, int sus1, int stab1,int cost) {
super(ins, sus, stab, ins1, sus1, stab1,cost);
System.out.println("this is a ceiling tile");
// TODO Auto-generated constructor stub
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment