package com.lloydm.geosword;

public class Input
{
     public static float xpos;
     public static float ypos;
     public static boolean touched;
     public static boolean down;

     public Input()
     {
                     xpos = -1f;
                     ypos = -1f;
                     touched = false;
                     down = false;
     }
}