├── .gitignore ├── README.md ├── egImg ├── a1.png └── a2.png ├── img ├── a.gif ├── a.jpg ├── badPlane.gif ├── boom.gif ├── bossA.gif └── goodPlane.gif ├── index.html └── js └── mini.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/README.md -------------------------------------------------------------------------------- /egImg/a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/egImg/a1.png -------------------------------------------------------------------------------- /egImg/a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/egImg/a2.png -------------------------------------------------------------------------------- /img/a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/img/a.gif -------------------------------------------------------------------------------- /img/a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/img/a.jpg -------------------------------------------------------------------------------- /img/badPlane.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/img/badPlane.gif -------------------------------------------------------------------------------- /img/boom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/img/boom.gif -------------------------------------------------------------------------------- /img/bossA.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/img/bossA.gif -------------------------------------------------------------------------------- /img/goodPlane.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/img/goodPlane.gif -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/index.html -------------------------------------------------------------------------------- /js/mini.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TerryBeanX2/PlaneWar/HEAD/js/mini.js --------------------------------------------------------------------------------