/*
 * @topic W110131 Java <a href="http://www.c-jump.com/bcc/c123c/c123sample/Java/Week11/hero_digram_class_violet.html" target="_blank">inheritance demo</a>
 * @brief interface ISportsCar
 */
package javainheritance;

public interface ISportsCar {
    void boostHorsepower();
}//interface ISportsCar