public float getPhysicalDistanceTo(touch t)
        {
            touchInterface i = null;

            t._getInterface(ref i);
            return(Vector2.Distance(i.physicalPos, physicalPos));
        }
        public override void onTouchMoved(touch touch)
        {
            touchInterface i = new touchInterface();

            touch._getInterface(ref i);

            display.text = "Latest Values:\nx: " + i.rawTouchScreenX + "\ny: " + i.rawTouchScreenY;
        }