Home
About
Projects
Contact
PlayersOnTeam.java
/**
 * Interface for getting the players on the team
 */

public interface PlayersOnTeam
{
    public int getTotalPlayersOnTeam();
}