Add: print sample - graph, ranking
This commit is contained in:
@@ -3,14 +3,14 @@
|
||||
|
||||
class RecordBoard {
|
||||
|
||||
constructor() {
|
||||
constructor(type) {
|
||||
this.chartGraphics = game.add.graphics(0, 0);
|
||||
|
||||
this.printRecordBoardHeader();
|
||||
this.printSeperator();
|
||||
|
||||
let historyBoard = new HistoryBoard();
|
||||
let rankingBoard = new RankingBoard();
|
||||
let historyBoard = new HistoryBoard(type);
|
||||
let rankingBoard = new RankingBoard(type);
|
||||
}
|
||||
|
||||
|
||||
@@ -53,4 +53,7 @@ class RecordBoard {
|
||||
|
||||
}
|
||||
|
||||
RecordBoard.HEADER_BAR_HEIGHT_PX = 60;
|
||||
RecordBoard.HEADER_BAR_HEIGHT_PX = 60;
|
||||
|
||||
RecordBoard.TYPE_SAMPLE = "sample";
|
||||
RecordBoard.TYPE_DB = "db";
|
||||
Reference in New Issue
Block a user