├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING_GUIDELINE.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── documentation_bug.yml │ ├── game_enhancement.yml │ ├── new_features_request.yml │ └── question_and_support.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── AutoGreeting.yml │ ├── CommentOnIssueClose.yml │ └── auto-label-issues.yml ├── 404.html ├── 404pic2.png ├── Create Contributing.md ├── Demo Video.mp4 ├── LEARN.md ├── LICENSE ├── README.md ├── Screenshot (221).png ├── Screenshot (222).png ├── ben-griffiths-ybFAhjUV4Cs-unsplash.jpg ├── game.js ├── home.html ├── index.html └── style.css /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING_GUIDELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/.github/CONTRIBUTING_GUIDELINE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/.github/ISSUE_TEMPLATE/documentation_bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/game_enhancement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/.github/ISSUE_TEMPLATE/game_enhancement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_features_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/.github/ISSUE_TEMPLATE/new_features_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question_and_support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/.github/ISSUE_TEMPLATE/question_and_support.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/AutoGreeting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/.github/workflows/AutoGreeting.yml -------------------------------------------------------------------------------- /.github/workflows/CommentOnIssueClose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/.github/workflows/CommentOnIssueClose.yml -------------------------------------------------------------------------------- /.github/workflows/auto-label-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/.github/workflows/auto-label-issues.yml -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/404.html -------------------------------------------------------------------------------- /404pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/404pic2.png -------------------------------------------------------------------------------- /Create Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/Create Contributing.md -------------------------------------------------------------------------------- /Demo Video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/Demo Video.mp4 -------------------------------------------------------------------------------- /LEARN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/LEARN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot (221).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/Screenshot (221).png -------------------------------------------------------------------------------- /Screenshot (222).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/Screenshot (222).png -------------------------------------------------------------------------------- /ben-griffiths-ybFAhjUV4Cs-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/ben-griffiths-ybFAhjUV4Cs-unsplash.jpg -------------------------------------------------------------------------------- /game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/game.js -------------------------------------------------------------------------------- /home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/home.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/index.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/PACKABUNCHAS/HEAD/style.css --------------------------------------------------------------------------------