diff options
Diffstat (limited to 'frontend/app/types/PlayerInfo.ts')
| -rw-r--r-- | frontend/app/types/PlayerInfo.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/frontend/app/types/PlayerInfo.ts b/frontend/app/types/PlayerInfo.ts new file mode 100644 index 0000000..e282ba9 --- /dev/null +++ b/frontend/app/types/PlayerInfo.ts @@ -0,0 +1,7 @@ +import type { PlayerProfile } from "./PlayerProfile"; +import type { PlayerState } from "./PlayerState"; + +export type PlayerInfo = { + profile: PlayerProfile; + state: PlayerState; +}; |
