Home
About
Projects
Contact
FootballScoring.java
/**
 * Interface for getting the scoring info in football
 */

public interface FootballScoring
{
    public static final int pointsPerTouchDown = 6;

    public int getPointsPerTouchDown();
}