Created
January 29, 2020 03:04
-
-
Save BenHenning/0e3a3c4a798dbe4ffb884144e2b7e592 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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