Update game-data.ts types to work

This commit is contained in:
Bertie690 2025-08-13 08:56:57 -04:00 committed by GitHub
parent 718bf0570c
commit 105d2ec285
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -206,10 +206,12 @@ export interface StarterData {
[key: number]: StarterDataEntry;
}
// TODO: Rework into a bitmask
export type TutorialFlags = {
[key in Tutorials]: boolean;
[key in Tutorial]: boolean;
};
// TODO: Rework into a bitmask
export interface SeenDialogues {
[key: string]: boolean;
}