blob: 8092ab3086a4070f96eb8e7c6e5551e2295fbeed (
plain)
1
2
3
4
5
6
7
8
9
|
import type { SubmitResult } from "./SubmitResult";
export type PlayerInfo = {
displayName: string | null;
iconPath: string | null;
score: number | null;
code: string | null;
submitResult: SubmitResult;
};
|