Guest User

Untitled

a guest
Apr 13th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. package Window;
  2.  
  3. public enum TileType {
  4.  
  5. stone("stone", true);
  6.  
  7. public String textureName;
  8. boolean solid;
  9.  
  10. TileType(String textureName, boolean solid){
  11. this.textureName = textureName;
  12. this.solid = solid;
  13. }
  14.  
  15. }
Add Comment
Please, Sign In to add comment