Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. public class Room
  2. {
  3. private double width, depth, height;
  4. private String textureTop, textureBottom, textureEast, textureWest, textureSouth, textureNorth;
  5.  
  6. /**
  7. * A room with just marble floor and no walls.
  8. */
  9. public Room()
  10. {
  11. width = 60;
  12. depth = 30;
  13. height = 50;
  14. textureBottom = "textures/marble.gif";
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement