From c51f744f8f692e33e265a18c67c27c36d36795bd Mon Sep 17 00:00:00 2001 From: Ziver Koc Date: Thu, 15 Mar 2007 18:08:04 +0000 Subject: [PATCH] --- src/ei/engine/math/Vector2I.java | 42 -------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 src/ei/engine/math/Vector2I.java diff --git a/src/ei/engine/math/Vector2I.java b/src/ei/engine/math/Vector2I.java deleted file mode 100644 index e53c808..0000000 --- a/src/ei/engine/math/Vector2I.java +++ /dev/null @@ -1,42 +0,0 @@ -package ei.engine.math; - -public class Vector2I { - private int x; - private int y; - - public Vector2I(int x, int y){ - this.x = x; - this.y = y; - } - - /** - * Get the X value - * - * @return the x value in the vector - */ - public int getX(){ - return x; - } - - /** - * Get the Y value - * - * @return the y value in the vector - */ - public int getY(){ - return y; - } - - /** - * Add to the vectro - * @param i The amount to add - */ - public void add(int i){ - x += i; - y += i; - } - - public String toString(){ - return "Vector2I["+x+","+y+"]"; - } -}