2023-09-10 12:59:22 +01:00
|
|
|
import Slot from "../objects/Slot";
|
|
|
|
import User from "../objects/User";
|
|
|
|
import MatchScoreData from "./MatchScoreData";
|
2022-11-23 00:48:28 +00:00
|
|
|
|
2023-09-10 12:59:22 +01:00
|
|
|
export default interface PlayerScore {
|
2022-11-23 00:48:28 +00:00
|
|
|
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
|
|
|
}
|