mirror of
https://github.com/djhackersdev/minime.git
synced 2026-08-20 01:14:08 -05:00
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:
@@ -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";
|
||||
|
||||
@@ -10,6 +10,11 @@ export interface Team {
|
||||
registerTime: Date;
|
||||
}
|
||||
|
||||
export interface TeamAuto {
|
||||
serialNo: number;
|
||||
nameIdx: number;
|
||||
}
|
||||
|
||||
export interface TeamMember {
|
||||
profile: Profile;
|
||||
chara: Chara;
|
||||
|
||||
Reference in New Issue
Block a user