Added a TexturLoader and Nodes, Sprites and some modifications

This commit is contained in:
Ziver Koc 2007-03-08 19:17:23 +00:00
parent 330607c72b
commit 82d2a64097
6 changed files with 687 additions and 0 deletions

View file

@ -0,0 +1,25 @@
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;
}
/**
* @return the x value in the vector
*/
public int getX(){
return x;
}
/**
* @return the y value in the vector
*/
public int getY(){
return y;
}
}