├── .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 ├── Contributing.md ├── Dockerfile ├── LICENSE ├── README.md ├── about.html ├── css ├── about.css ├── feedback.css └── style.css ├── desvg.html ├── feedback.html ├── howtoplay.html ├── images ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── CURSOR1.png ├── atom.png └── scientist.png ├── index.html ├── js ├── description.js ├── elements.js ├── feedback.js ├── game.js ├── index.js ├── music.js ├── preloader.js └── svg.js ├── json └── package-lock.json └── svg ├── antimatter.svg ├── apocalypse.svg ├── babylon5.svg ├── battlestar.svg ├── blackhole.svg ├── bladerunner.svg ├── borg.svg ├── clonewars.svg ├── cylon.svg ├── darkmatter.svg ├── darthmaul.svg ├── darthvader.svg ├── data.svg ├── deathstar.svg ├── delorean.svg ├── doctorwho.svg ├── down.svg ├── dune.svg ├── emperor.svg ├── entropy.svg ├── et.svg ├── farscape.svg ├── firefly.svg ├── force.svg ├── hal.svg ├── independenceday.svg ├── jedi.svg ├── lor.svg ├── mars.svg ├── matter.svg ├── military.svg ├── obiwan.svg ├── opposite.svg ├── ragnarok.svg ├── romulan.svg ├── sith.svg ├── spacestation.svg ├── spock.svg ├── starfleet.svg ├── stargate.svg ├── starwars.svg ├── up.svg ├── wheel.svg ├── xenomorphegg.svg └── yoda.svg /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING_GUIDELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/.github/CONTRIBUTING_GUIDELINE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/.github/ISSUE_TEMPLATE/documentation_bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/game_enhancement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/.github/ISSUE_TEMPLATE/game_enhancement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new_features_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/.github/ISSUE_TEMPLATE/new_features_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question_and_support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/.github/ISSUE_TEMPLATE/question_and_support.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/AutoGreeting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/.github/workflows/AutoGreeting.yml -------------------------------------------------------------------------------- /.github/workflows/CommentOnIssueClose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/.github/workflows/CommentOnIssueClose.yml -------------------------------------------------------------------------------- /.github/workflows/auto-label-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/.github/workflows/auto-label-issues.yml -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/Contributing.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/README.md -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/about.html -------------------------------------------------------------------------------- /css/about.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/css/about.css -------------------------------------------------------------------------------- /css/feedback.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/css/feedback.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/css/style.css -------------------------------------------------------------------------------- /desvg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/desvg.html -------------------------------------------------------------------------------- /feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/feedback.html -------------------------------------------------------------------------------- /howtoplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/howtoplay.html -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/images/4.png -------------------------------------------------------------------------------- /images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/images/5.png -------------------------------------------------------------------------------- /images/CURSOR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/images/CURSOR1.png -------------------------------------------------------------------------------- /images/atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/images/atom.png -------------------------------------------------------------------------------- /images/scientist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/images/scientist.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/index.html -------------------------------------------------------------------------------- /js/description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/js/description.js -------------------------------------------------------------------------------- /js/elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/js/elements.js -------------------------------------------------------------------------------- /js/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/js/feedback.js -------------------------------------------------------------------------------- /js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/js/game.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/js/index.js -------------------------------------------------------------------------------- /js/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/js/music.js -------------------------------------------------------------------------------- /js/preloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/js/preloader.js -------------------------------------------------------------------------------- /js/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/js/svg.js -------------------------------------------------------------------------------- /json/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/json/package-lock.json -------------------------------------------------------------------------------- /svg/antimatter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/antimatter.svg -------------------------------------------------------------------------------- /svg/apocalypse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/apocalypse.svg -------------------------------------------------------------------------------- /svg/babylon5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/babylon5.svg -------------------------------------------------------------------------------- /svg/battlestar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/battlestar.svg -------------------------------------------------------------------------------- /svg/blackhole.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/blackhole.svg -------------------------------------------------------------------------------- /svg/bladerunner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/bladerunner.svg -------------------------------------------------------------------------------- /svg/borg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/borg.svg -------------------------------------------------------------------------------- /svg/clonewars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/clonewars.svg -------------------------------------------------------------------------------- /svg/cylon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/cylon.svg -------------------------------------------------------------------------------- /svg/darkmatter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/darkmatter.svg -------------------------------------------------------------------------------- /svg/darthmaul.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/darthmaul.svg -------------------------------------------------------------------------------- /svg/darthvader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/darthvader.svg -------------------------------------------------------------------------------- /svg/data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/data.svg -------------------------------------------------------------------------------- /svg/deathstar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/deathstar.svg -------------------------------------------------------------------------------- /svg/delorean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/delorean.svg -------------------------------------------------------------------------------- /svg/doctorwho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/doctorwho.svg -------------------------------------------------------------------------------- /svg/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/down.svg -------------------------------------------------------------------------------- /svg/dune.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/dune.svg -------------------------------------------------------------------------------- /svg/emperor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/emperor.svg -------------------------------------------------------------------------------- /svg/entropy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/entropy.svg -------------------------------------------------------------------------------- /svg/et.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/et.svg -------------------------------------------------------------------------------- /svg/farscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/farscape.svg -------------------------------------------------------------------------------- /svg/firefly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/firefly.svg -------------------------------------------------------------------------------- /svg/force.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/force.svg -------------------------------------------------------------------------------- /svg/hal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/hal.svg -------------------------------------------------------------------------------- /svg/independenceday.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/independenceday.svg -------------------------------------------------------------------------------- /svg/jedi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/jedi.svg -------------------------------------------------------------------------------- /svg/lor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/lor.svg -------------------------------------------------------------------------------- /svg/mars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/mars.svg -------------------------------------------------------------------------------- /svg/matter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/matter.svg -------------------------------------------------------------------------------- /svg/military.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/military.svg -------------------------------------------------------------------------------- /svg/obiwan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/obiwan.svg -------------------------------------------------------------------------------- /svg/opposite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/opposite.svg -------------------------------------------------------------------------------- /svg/ragnarok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/ragnarok.svg -------------------------------------------------------------------------------- /svg/romulan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/romulan.svg -------------------------------------------------------------------------------- /svg/sith.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/sith.svg -------------------------------------------------------------------------------- /svg/spacestation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/spacestation.svg -------------------------------------------------------------------------------- /svg/spock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/spock.svg -------------------------------------------------------------------------------- /svg/starfleet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/starfleet.svg -------------------------------------------------------------------------------- /svg/stargate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/stargate.svg -------------------------------------------------------------------------------- /svg/starwars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/starwars.svg -------------------------------------------------------------------------------- /svg/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/up.svg -------------------------------------------------------------------------------- /svg/wheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/wheel.svg -------------------------------------------------------------------------------- /svg/xenomorphegg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/xenomorphegg.svg -------------------------------------------------------------------------------- /svg/yoda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChromeGaming/Physi-c-Tech/HEAD/svg/yoda.svg --------------------------------------------------------------------------------