com.ng.gdxutils.model.Size Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gdx-utils Show documentation
Show all versions of gdx-utils Show documentation
A java library that used over libGdx game framework.
The newest version!
package com.ng.gdxutils.model;
import com.badlogic.gdx.math.Vector2;
/**
* (c) 2016 Abhishek Aryan
*
* @author Abhishek Aryan
* @since 24-07-2016
*
*/
public class Size extends Vector2 {
public Size(float x, float y) {
super(x,y);
}
public static Size makeSize(float x, float y) {
return new Size(x, y);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy