idz: Add "Auto team" data model

New players get packed into automatically-created teams whose
names follow an automated pattern. Add data models to support this.
This commit is contained in:
Tau
2019-05-28 15:55:01 -04:00
parent 33e2f55dce
commit 4f044de9fb
2 changed files with 6 additions and 1 deletions

View File

@@ -5,7 +5,7 @@ export { MissionState, MissionGrid } from "./mission";
export { Profile } from "./profile";
export { Settings } from "./settings";
export { Story } from "./story";
export { Team, TeamMember } from "./team";
export { Team, TeamAuto, TeamMember } from "./team";
export { Tickets } from "./tickets";
export { TimeAttackScore } from "./timeAttack";
export { Unlocks } from "./unlocks";

View File

@@ -10,6 +10,11 @@ export interface Team {
registerTime: Date;
}
export interface TeamAuto {
serialNo: number;
nameIdx: number;
}
export interface TeamMember {
profile: Profile;
chara: Chara;