0
0
Fork 0

Change structure of the decks for the datastore.

This commit is contained in:
Oliver-Akins 2021-01-06 17:18:07 -07:00
parent 95c298002f
commit 28a1f1ee14

View file

@ -21,11 +21,14 @@ interface datastoreDeck<T> {
deck: T[];
}
interface datastore {
interface datastoreGame {
decks: {
questions: datastoreDeck<question_deck>;
objects: datastoreDeck<object_deck>;
};
objectCard: datastoreObjectCard;
players: datastorePlayer[];
teams: datastoreTeam[];
ingame: boolean;
object: string;
}