All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codeminders.ardrone.Dimension Maven / Gradle / Ivy

The newest version!

package com.codeminders.ardrone;

public class Dimension
{
    private int width;
    private int height;

    public Dimension(int width, int height)
    {
        super();
        this.width = width;
        this.height = height;
    }

    public int getWidth()
    {
        return width;
    }

    public void setWidth(int width)
    {
        this.width = width;
    }

    public int getHeight()
    {
        return height;
    }

    public void setHeight(int height)
    {
        this.height = height;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy