aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/types/PlayerInfo.ts
blob: e282ba9de9bd4c4c2d126e9f9e78af2a41dbcf30 (plain)
1
2
3
4
5
6
7
import type { PlayerProfile } from "./PlayerProfile";
import type { PlayerState } from "./PlayerState";

export type PlayerInfo = {
	profile: PlayerProfile;
	state: PlayerState;
};