package se.nicklasgavelin.sphero.response.regular;
import se.nicklasgavelin.sphero.response.ResponseMessage;
/**
* The response for the SpinRightCommand
*
* @author Nicklas Gavelin, nicklas.gavelin@gmail.com, LuleƄ University of Technology
*/
public class SpinRightResponse extends ResponseMessage
{
/**
* Create a SpinRightResponse from the received data
*
* @param rh The response header containing the response data
*/
public SpinRightResponse( ResponseMessage.ResponseHeader rh )
{
super( rh );
}
}