package h05; public interface CarriesPassengers { void board(int peopleCount); int getPassengerCount(); void disembark(); }