From 7702b84e7cf0fe85d15f3aa704f7d31871722d30 Mon Sep 17 00:00:00 2001 From: Ziver Koc Date: Mon, 26 Mar 2007 08:48:36 +0000 Subject: [PATCH] made mouse pos to static --- src/ei/engine/input/MouseInput.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ei/engine/input/MouseInput.java b/src/ei/engine/input/MouseInput.java index e67ebfc..499e099 100644 --- a/src/ei/engine/input/MouseInput.java +++ b/src/ei/engine/input/MouseInput.java @@ -7,15 +7,15 @@ import ei.engine.math.Vector2f; import ei.engine.scene.Sprite; /** - * Handles the mous input + * Handles the mouse input * @author Ziver * */ public abstract class MouseInput extends Input{ // The x pos of the mouse - private int cursorX; + private static int cursorX; // The y pos of the mouse - private int cursorY; + private static int cursorY; // The texute for the mouse private Sprite cursor;