├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public └── vite.svg ├── src ├── App.vue ├── assets │ └── vue.svg ├── colors.ts ├── components │ ├── AirPlane │ │ ├── MainBody.vue │ │ ├── Propeller.vue │ │ ├── Wheel.vue │ │ └── index.vue │ ├── Cloud.vue │ ├── Coins.vue │ ├── Enemies.vue │ ├── Game.vue │ ├── Light.vue │ ├── Particles.vue │ ├── Pilot │ │ ├── body.vue │ │ ├── ear.vue │ │ ├── face.vue │ │ ├── glass.vue │ │ ├── hairs.vue │ │ └── index.vue │ ├── Sea.vue │ └── Sky.vue ├── composables │ ├── useCoinsHolder.ts │ ├── useEnemiesHolder.ts │ ├── useGame.ts │ ├── useObjectManager.ts │ └── useParticlesHolder.ts ├── main.ts ├── styles │ ├── demo.css │ └── game.css ├── utils │ └── index.ts └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/assets/vue.svg -------------------------------------------------------------------------------- /src/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/colors.ts -------------------------------------------------------------------------------- /src/components/AirPlane/MainBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/AirPlane/MainBody.vue -------------------------------------------------------------------------------- /src/components/AirPlane/Propeller.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/AirPlane/Propeller.vue -------------------------------------------------------------------------------- /src/components/AirPlane/Wheel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/AirPlane/Wheel.vue -------------------------------------------------------------------------------- /src/components/AirPlane/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/AirPlane/index.vue -------------------------------------------------------------------------------- /src/components/Cloud.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Cloud.vue -------------------------------------------------------------------------------- /src/components/Coins.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Coins.vue -------------------------------------------------------------------------------- /src/components/Enemies.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Enemies.vue -------------------------------------------------------------------------------- /src/components/Game.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Game.vue -------------------------------------------------------------------------------- /src/components/Light.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Light.vue -------------------------------------------------------------------------------- /src/components/Particles.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Particles.vue -------------------------------------------------------------------------------- /src/components/Pilot/body.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Pilot/body.vue -------------------------------------------------------------------------------- /src/components/Pilot/ear.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Pilot/ear.vue -------------------------------------------------------------------------------- /src/components/Pilot/face.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Pilot/face.vue -------------------------------------------------------------------------------- /src/components/Pilot/glass.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Pilot/glass.vue -------------------------------------------------------------------------------- /src/components/Pilot/hairs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Pilot/hairs.vue -------------------------------------------------------------------------------- /src/components/Pilot/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Pilot/index.vue -------------------------------------------------------------------------------- /src/components/Sea.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Sea.vue -------------------------------------------------------------------------------- /src/components/Sky.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/components/Sky.vue -------------------------------------------------------------------------------- /src/composables/useCoinsHolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/composables/useCoinsHolder.ts -------------------------------------------------------------------------------- /src/composables/useEnemiesHolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/composables/useEnemiesHolder.ts -------------------------------------------------------------------------------- /src/composables/useGame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/composables/useGame.ts -------------------------------------------------------------------------------- /src/composables/useObjectManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/composables/useObjectManager.ts -------------------------------------------------------------------------------- /src/composables/useParticlesHolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/composables/useParticlesHolder.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/styles/demo.css -------------------------------------------------------------------------------- /src/styles/game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/styles/game.css -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enpitsuLin/tres-the-aviator/HEAD/vite.config.ts --------------------------------------------------------------------------------