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.
33 lines
788 B
33 lines
788 B
2 years ago
|
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) {
|
||
|
// TODO Auto-generated method stub
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
String interpretResults(String[] finalData) {
|
||
|
// TODO Auto-generated method stub
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
}
|