Skip to content

Instantly share code, notes, and snippets.

@BenHenning
Created January 29, 2020 03:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BenHenning/0e3a3c4a798dbe4ffb884144e2b7e592 to your computer and use it in GitHub Desktop.
Save BenHenning/0e3a3c4a798dbe4ffb884144e2b7e592 to your computer and use it in GitHub Desktop.
message TopicProgressDatabase {
// Map from topic ID to TopicProgress.
map<string, TopicProgress> topic_progress = 1;
}
message TopicProgress {
// Map from story ID to StoryProgress.
map<string, StoryProgress> story_progress = 1;
}
message StoryProgress {
// Map from exploration ID to ChapterPlayState.
map<string, ChapterPlayState> chapter_progress = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment