Add: print sample - graph, ranking

This commit is contained in:
2018-08-10 18:16:15 +09:00
parent d97dbaa20f
commit ae42c35807
10 changed files with 188 additions and 14 deletions
+7 -4
View File
@@ -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";