blob: 7206a8bffd961e6fc4c815f5d7b2c6eb5b446cec (
plain)
1
2
3
4
5
6
7
8
9
|
import type { SubmissionResult } from "./SubmissionResult";
export type PlayerInfo = {
displayName: string | null;
iconPath: string | null;
score: number | null;
code: string | null;
submissionResult?: SubmissionResult;
};
|