Beispiel #1
0
    public RequestMovement requestMovement(float x, float y)
    {
        RequestMovement request = new RequestMovement();

        request.send((int)x, (int)y);
        return(request);
    }
    public RequestMovement requestMovement(string username, string locationX, string locationY)
    {
        RequestMovement request = new RequestMovement();

        request.send(username, locationX, locationY);
        return(request);
    }