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

com.ng.gdxutils.model.Size Maven / Gradle / Ivy

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