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

com.artemis.util.Vec2f Maven / Gradle / Ivy

package com.artemis.util;


public class Vec2f {
	public float x, y;

	public Vec2f(float x, float y) {
		this.x = x;
		this.y = y;
	}

	public float x() {
		return x;
	}

	public void x(float x) {
		this.x = x;
	}

	public float y() {
		return y;
	}

	public void y(float y) {
		this.y = y;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy