I Hardware Robot Room Cleaner

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

namespace RumbaMumbaRobots.

CleaningAlgorithm
{
/// <summary>
///
/// </summary>
public interface IHardwareRobotRoomCleaner
{
#region Methods

/// <summary>
///
/// </summary>
void CleanRoom();
/// <summary>
///
/// </summary>
void PrintPath();
/// <summary>
///
/// </summary>
void PrintTotalMovement();

#endregion
}
}

You might also like