/** * (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(); } }