2022-11-23 00:48:28 +00:00
|
|
|
import { Slot } from "../objects/Slot";
|
|
|
|
import { User } from "../objects/User";
|
2022-11-27 15:59:43 +00:00
|
|
|
import { MatchScoreData } from "./MatchScoreData";
|
2022-11-23 00:48:28 +00:00
|
|
|
|
|
|
|
export interface PlayerScore {
|
|
|
|
player:User,
|
|
|
|
slot:Slot,
|
|
|
|
score:number,
|
|
|
|
isCurrentlyFailed:boolean,
|
|
|
|
hasFailed:boolean,
|
2022-11-27 15:59:43 +00:00
|
|
|
_raw?:MatchScoreData
|
2022-11-23 00:48:28 +00:00
|
|
|
}
|