namespace PepperDash.Essentials.Devices.Common.Cameras
{
///
/// Interface for camera pan control
///
public interface IHasCameraPanControl : IHasCameraControls
{
///
/// Pans the camera left
///
void PanLeft();
///
/// Pans the camera right
///
void PanRight();
///
/// Stops the camera pan movement
///
void PanStop();
}
}