package readers;

import java.nio.file.Path;

public class TestReader extends Reader{

    public TestReader(int score,int rank,int[] notes,int diff,double pct,int maxcombo) {
        this(score,rank,notes,diff,pct,maxcombo,"");
    }
    public TestReader(int score,int rank,int[] notes,int diff,double pct,int maxcombo,String other) {
        this.score=score;
        this.rank=rank;
        this.notes=notes;
        this.difficulty=diff;
        this.pct=pct;
        this.maxcombo=maxcombo;
        this.other=other;
    }

    @Override
    public void interpretBoxes(Path file,boolean testingMode) {
        // TODO Auto-generated method stub
        
    }

    @Override
    String interpretResults(String[] finalData) {
        // TODO Auto-generated method stub
        return null;
    }
    
}