Where people come together to learn, code, and play. Custom-built HTTP server, site generator, and website from scratch using no external libraries. Goal is to be as minimalistic and fun as possible. http://projectdivar.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
SigPlace/readers/TestReader.java

32 lines
808 B

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;
}
}