package me.hammerle.snuviengine.game; public class Rectangle { private final float w; private final float h; public Rectangle(float w, float h) { this.w = w; this.h = h; } public float getWidth() { return w; } public float getHeight() { return h; } }