mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-21 17:34:46 -05:00
15 lines
293 B
TypeScript
15 lines
293 B
TypeScript
export class Score {
|
|
collection: "score" = "score";
|
|
|
|
musicId: number;
|
|
seq: number;
|
|
score: number = 0;
|
|
clearType: number = 0;
|
|
playCount: number = 0;
|
|
clearCount: number = 0;
|
|
fullcomboCount: number = 0;
|
|
excellentCount: number = 0;
|
|
isHardmodeClear: boolean;
|
|
bar: number[];
|
|
}
|