| 1234567891011121314151617181920212223 | 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;    }}
 |