Fix duplicated and simplify scores & related codes

Actually not tested for now. will be soon
This commit is contained in:
DitFranXX
2020-12-11 16:48:03 +09:00
parent 12bcc0f6de
commit 5d52767f0a
2 changed files with 58 additions and 49 deletions
+14 -13
View File
@@ -5,19 +5,20 @@ export interface Scores {
version: string;
pluginVer: number
mid: number,
update: number[];
diffs: {
[seq: string]: {
perc: number;
rank: number;
clear: boolean;
fc: boolean;
ex: boolean;
meter: string;
prog: number;
scores: {
[mid: string]: {
update: number[];
diffs: {
[seq: string]: {
perc: number;
rank: number;
clear: boolean;
fc: boolean;
ex: boolean;
meter: string;
prog: number;
};
};
};
};
}