generated from sigonasr2/JavaProjectTemplate
11 lines
254 B
Java
11 lines
254 B
Java
|
package sig.engine;
|
||
|
|
||
|
public class Mouse {
|
||
|
public static int x;
|
||
|
public static int y;
|
||
|
public static Point<Integer> mousePosition = new Point<Integer>(0,0);
|
||
|
public static Point<Integer> GetPos(){
|
||
|
return new Point<Integer>(x,y);
|
||
|
}
|
||
|
}
|