Rectangle.java 343 B

1234567891011121314151617181920212223
  1. package me.hammerle.snuviengine.game;
  2. public class Rectangle
  3. {
  4. private final float w;
  5. private final float h;
  6. public Rectangle(float w, float h)
  7. {
  8. this.w = w;
  9. this.h = h;
  10. }
  11. public float getWidth()
  12. {
  13. return w;
  14. }
  15. public float getHeight()
  16. {
  17. return h;
  18. }
  19. }