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

com.bigcustard.scene2dplus.Spacer Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.bigcustard.scene2dplus;

import com.badlogic.gdx.scenes.scene2d.Actor;

public class Spacer extends Actor {
    private float pixels;

    public Spacer(float pixels) {
        this.pixels = pixels;
    }

    public float getWidth() {
        return pixels;
    }

    public float getHeight() {
        return pixels;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy