├── .browserslistrc ├── .editorconfig ├── .gcloudignore ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── angular.json ├── app.yaml ├── butler.csv ├── chef.csv ├── generate_models.js ├── karma.conf.js ├── maid.csv ├── package.json ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── bot-response.service.spec.ts │ ├── bot-response.service.ts │ ├── chat │ │ ├── chat.component.html │ │ ├── chat.component.scss │ │ ├── chat.component.spec.ts │ │ └── chat.component.ts │ ├── dialog-close-button │ │ ├── dialog-close-button.component.html │ │ ├── dialog-close-button.component.scss │ │ ├── dialog-close-button.component.spec.ts │ │ └── dialog-close-button.component.ts │ ├── dialog-host │ │ ├── dialog-host.component.html │ │ ├── dialog-host.component.scss │ │ ├── dialog-host.component.spec.ts │ │ └── dialog-host.component.ts │ ├── dialog.service.spec.ts │ ├── dialog.service.ts │ ├── help-dialog │ │ ├── help-dialog.component.html │ │ ├── help-dialog.component.scss │ │ ├── help-dialog.component.spec.ts │ │ └── help-dialog.component.ts │ ├── home │ │ ├── home.component.html │ │ ├── home.component.scss │ │ ├── home.component.spec.ts │ │ └── home.component.ts │ ├── how-dialog │ │ ├── how-dialog.component.html │ │ ├── how-dialog.component.scss │ │ ├── how-dialog.component.spec.ts │ │ └── how-dialog.component.ts │ ├── incomplete-solution-dialog │ │ ├── incomplete-solution-dialog.component.html │ │ ├── incomplete-solution-dialog.component.scss │ │ ├── incomplete-solution-dialog.component.spec.ts │ │ └── incomplete-solution-dialog.component.ts │ ├── incorrect-solution-dialog │ │ ├── incorrect-solution-dialog.component.html │ │ ├── incorrect-solution-dialog.component.scss │ │ ├── incorrect-solution-dialog.component.spec.ts │ │ └── incorrect-solution-dialog.component.ts │ ├── interview-pane │ │ ├── interview-pane.component.html │ │ ├── interview-pane.component.scss │ │ ├── interview-pane.component.spec.ts │ │ └── interview-pane.component.ts │ ├── map-dialog │ │ ├── map-dialog.component.html │ │ ├── map-dialog.component.scss │ │ ├── map-dialog.component.spec.ts │ │ └── map-dialog.component.ts │ ├── nav-buttons │ │ ├── nav-buttons.component.html │ │ ├── nav-buttons.component.scss │ │ ├── nav-buttons.component.spec.ts │ │ └── nav-buttons.component.ts │ ├── notes-dialog │ │ ├── notes-dialog.component.html │ │ ├── notes-dialog.component.scss │ │ ├── notes-dialog.component.spec.ts │ │ └── notes-dialog.component.ts │ ├── radio-list │ │ ├── radio-list.component.html │ │ ├── radio-list.component.scss │ │ ├── radio-list.component.spec.ts │ │ └── radio-list.component.ts │ ├── solve-dialog │ │ ├── solve-dialog.component.html │ │ ├── solve-dialog.component.scss │ │ ├── solve-dialog.component.spec.ts │ │ └── solve-dialog.component.ts │ ├── welcome-dialog │ │ ├── welcome-dialog.component.html │ │ ├── welcome-dialog.component.scss │ │ ├── welcome-dialog.component.spec.ts │ │ └── welcome-dialog.component.ts │ └── win-dialog │ │ ├── win-dialog.component.html │ │ ├── win-dialog.component.scss │ │ ├── win-dialog.component.spec.ts │ │ └── win-dialog.component.ts ├── assets │ ├── .gitkeep │ ├── images │ │ ├── butler-fade.png │ │ ├── butler.png │ │ ├── chef.png │ │ ├── maid.png │ │ ├── map.png │ │ ├── notebook.png │ │ ├── question-page-background.png │ │ ├── send-message.svg │ │ └── win-certificate.jpg │ └── models │ │ ├── butler.model.json │ │ ├── chef.model.json │ │ └── maid.model.json ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── styles │ ├── _buttons.scss │ └── _notebook.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/.browserslistrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/angular.json -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/app.yaml -------------------------------------------------------------------------------- /butler.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/butler.csv -------------------------------------------------------------------------------- /chef.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/chef.csv -------------------------------------------------------------------------------- /generate_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/generate_models.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/karma.conf.js -------------------------------------------------------------------------------- /maid.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/maid.csv -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/bot-response.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/bot-response.service.spec.ts -------------------------------------------------------------------------------- /src/app/bot-response.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/bot-response.service.ts -------------------------------------------------------------------------------- /src/app/chat/chat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/chat/chat.component.html -------------------------------------------------------------------------------- /src/app/chat/chat.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/chat/chat.component.scss -------------------------------------------------------------------------------- /src/app/chat/chat.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/chat/chat.component.spec.ts -------------------------------------------------------------------------------- /src/app/chat/chat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/chat/chat.component.ts -------------------------------------------------------------------------------- /src/app/dialog-close-button/dialog-close-button.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/dialog-close-button/dialog-close-button.component.html -------------------------------------------------------------------------------- /src/app/dialog-close-button/dialog-close-button.component.scss: -------------------------------------------------------------------------------- 1 | @import '../../styles/buttons'; 2 | -------------------------------------------------------------------------------- /src/app/dialog-close-button/dialog-close-button.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/dialog-close-button/dialog-close-button.component.spec.ts -------------------------------------------------------------------------------- /src/app/dialog-close-button/dialog-close-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/dialog-close-button/dialog-close-button.component.ts -------------------------------------------------------------------------------- /src/app/dialog-host/dialog-host.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/dialog-host/dialog-host.component.html -------------------------------------------------------------------------------- /src/app/dialog-host/dialog-host.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/dialog-host/dialog-host.component.scss -------------------------------------------------------------------------------- /src/app/dialog-host/dialog-host.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/dialog-host/dialog-host.component.spec.ts -------------------------------------------------------------------------------- /src/app/dialog-host/dialog-host.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/dialog-host/dialog-host.component.ts -------------------------------------------------------------------------------- /src/app/dialog.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/dialog.service.spec.ts -------------------------------------------------------------------------------- /src/app/dialog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/dialog.service.ts -------------------------------------------------------------------------------- /src/app/help-dialog/help-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/help-dialog/help-dialog.component.html -------------------------------------------------------------------------------- /src/app/help-dialog/help-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/help-dialog/help-dialog.component.scss -------------------------------------------------------------------------------- /src/app/help-dialog/help-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/help-dialog/help-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/help-dialog/help-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/help-dialog/help-dialog.component.ts -------------------------------------------------------------------------------- /src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/home/home.component.scss -------------------------------------------------------------------------------- /src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/home/home.component.ts -------------------------------------------------------------------------------- /src/app/how-dialog/how-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/how-dialog/how-dialog.component.html -------------------------------------------------------------------------------- /src/app/how-dialog/how-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/how-dialog/how-dialog.component.scss -------------------------------------------------------------------------------- /src/app/how-dialog/how-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/how-dialog/how-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/how-dialog/how-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/how-dialog/how-dialog.component.ts -------------------------------------------------------------------------------- /src/app/incomplete-solution-dialog/incomplete-solution-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/incomplete-solution-dialog/incomplete-solution-dialog.component.html -------------------------------------------------------------------------------- /src/app/incomplete-solution-dialog/incomplete-solution-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/incomplete-solution-dialog/incomplete-solution-dialog.component.scss -------------------------------------------------------------------------------- /src/app/incomplete-solution-dialog/incomplete-solution-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/incomplete-solution-dialog/incomplete-solution-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/incomplete-solution-dialog/incomplete-solution-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/incomplete-solution-dialog/incomplete-solution-dialog.component.ts -------------------------------------------------------------------------------- /src/app/incorrect-solution-dialog/incorrect-solution-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/incorrect-solution-dialog/incorrect-solution-dialog.component.html -------------------------------------------------------------------------------- /src/app/incorrect-solution-dialog/incorrect-solution-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/incorrect-solution-dialog/incorrect-solution-dialog.component.scss -------------------------------------------------------------------------------- /src/app/incorrect-solution-dialog/incorrect-solution-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/incorrect-solution-dialog/incorrect-solution-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/incorrect-solution-dialog/incorrect-solution-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/incorrect-solution-dialog/incorrect-solution-dialog.component.ts -------------------------------------------------------------------------------- /src/app/interview-pane/interview-pane.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/interview-pane/interview-pane.component.html -------------------------------------------------------------------------------- /src/app/interview-pane/interview-pane.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/interview-pane/interview-pane.component.scss -------------------------------------------------------------------------------- /src/app/interview-pane/interview-pane.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/interview-pane/interview-pane.component.spec.ts -------------------------------------------------------------------------------- /src/app/interview-pane/interview-pane.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/interview-pane/interview-pane.component.ts -------------------------------------------------------------------------------- /src/app/map-dialog/map-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/map-dialog/map-dialog.component.html -------------------------------------------------------------------------------- /src/app/map-dialog/map-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/map-dialog/map-dialog.component.scss -------------------------------------------------------------------------------- /src/app/map-dialog/map-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/map-dialog/map-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/map-dialog/map-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/map-dialog/map-dialog.component.ts -------------------------------------------------------------------------------- /src/app/nav-buttons/nav-buttons.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/nav-buttons/nav-buttons.component.html -------------------------------------------------------------------------------- /src/app/nav-buttons/nav-buttons.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/nav-buttons/nav-buttons.component.scss -------------------------------------------------------------------------------- /src/app/nav-buttons/nav-buttons.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/nav-buttons/nav-buttons.component.spec.ts -------------------------------------------------------------------------------- /src/app/nav-buttons/nav-buttons.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/nav-buttons/nav-buttons.component.ts -------------------------------------------------------------------------------- /src/app/notes-dialog/notes-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/notes-dialog/notes-dialog.component.html -------------------------------------------------------------------------------- /src/app/notes-dialog/notes-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/notes-dialog/notes-dialog.component.scss -------------------------------------------------------------------------------- /src/app/notes-dialog/notes-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/notes-dialog/notes-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/notes-dialog/notes-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/notes-dialog/notes-dialog.component.ts -------------------------------------------------------------------------------- /src/app/radio-list/radio-list.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/radio-list/radio-list.component.html -------------------------------------------------------------------------------- /src/app/radio-list/radio-list.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/radio-list/radio-list.component.scss -------------------------------------------------------------------------------- /src/app/radio-list/radio-list.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/radio-list/radio-list.component.spec.ts -------------------------------------------------------------------------------- /src/app/radio-list/radio-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/radio-list/radio-list.component.ts -------------------------------------------------------------------------------- /src/app/solve-dialog/solve-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/solve-dialog/solve-dialog.component.html -------------------------------------------------------------------------------- /src/app/solve-dialog/solve-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/solve-dialog/solve-dialog.component.scss -------------------------------------------------------------------------------- /src/app/solve-dialog/solve-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/solve-dialog/solve-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/solve-dialog/solve-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/solve-dialog/solve-dialog.component.ts -------------------------------------------------------------------------------- /src/app/welcome-dialog/welcome-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/welcome-dialog/welcome-dialog.component.html -------------------------------------------------------------------------------- /src/app/welcome-dialog/welcome-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/welcome-dialog/welcome-dialog.component.scss -------------------------------------------------------------------------------- /src/app/welcome-dialog/welcome-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/welcome-dialog/welcome-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/welcome-dialog/welcome-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/welcome-dialog/welcome-dialog.component.ts -------------------------------------------------------------------------------- /src/app/win-dialog/win-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/win-dialog/win-dialog.component.html -------------------------------------------------------------------------------- /src/app/win-dialog/win-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/win-dialog/win-dialog.component.scss -------------------------------------------------------------------------------- /src/app/win-dialog/win-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/win-dialog/win-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/win-dialog/win-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/app/win-dialog/win-dialog.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/butler-fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/images/butler-fade.png -------------------------------------------------------------------------------- /src/assets/images/butler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/images/butler.png -------------------------------------------------------------------------------- /src/assets/images/chef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/images/chef.png -------------------------------------------------------------------------------- /src/assets/images/maid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/images/maid.png -------------------------------------------------------------------------------- /src/assets/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/images/map.png -------------------------------------------------------------------------------- /src/assets/images/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/images/notebook.png -------------------------------------------------------------------------------- /src/assets/images/question-page-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/images/question-page-background.png -------------------------------------------------------------------------------- /src/assets/images/send-message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/images/send-message.svg -------------------------------------------------------------------------------- /src/assets/images/win-certificate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/images/win-certificate.jpg -------------------------------------------------------------------------------- /src/assets/models/butler.model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/models/butler.model.json -------------------------------------------------------------------------------- /src/assets/models/chef.model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/models/chef.model.json -------------------------------------------------------------------------------- /src/assets/models/maid.model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/assets/models/maid.model.json -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/styles/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/styles/_buttons.scss -------------------------------------------------------------------------------- /src/styles/_notebook.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/styles/_notebook.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/mysteryofthreebots/HEAD/tslint.json --------------------------------------------------------------------------------