mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-03-24 22:25:56 +01:00
29 lines
346 B
Java
29 lines
346 B
Java
|
|
/**
|
||
|
|
* (C) 2002 Shaven Puppy Ltd
|
||
|
|
*
|
||
|
|
* Vector2f.java Created on Aug 1, 2002 by foo
|
||
|
|
*/
|
||
|
|
package org.lwjgl.vector;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* (C) 2002 JGL.org
|
||
|
|
*
|
||
|
|
* Vector2f.java Created on Aug 1, 2002 by foo
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
* @author foo
|
||
|
|
*/
|
||
|
|
public class Vector2f {
|
||
|
|
|
||
|
|
public float x, y;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Constructor for Vector2f.
|
||
|
|
*/
|
||
|
|
public Vector2f() {
|
||
|
|
super();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|