├── ActiveObj.cpp ├── ActiveObj.h ├── Ball.h ├── Bg.cpp ├── Bg.h ├── Card.cpp ├── Card.h ├── Cherrybomb.cpp ├── Cherrybomb.h ├── Chomper.cpp ├── Chomper.h ├── DoorZombie.cpp ├── DoorZombie.h ├── DrumZombie.cpp ├── DrumZombie.h ├── Factory.cpp ├── Factory.h ├── Game.cpp ├── Game.h ├── GameObject.cpp ├── GameObject.h ├── HatZombie.cpp ├── HatZombie.h ├── IceShooter.cpp ├── IceShooter.h ├── MouseThing.cpp ├── MouseThing.h ├── Nut.cpp ├── Nut.h ├── PeaShooter.cpp ├── PeaShooter.h ├── PlantVSZombies.cpp ├── PlantVSZombies.vcxproj ├── PlantVSZombies.vcxproj.filters ├── Pumkin.cpp ├── Pumkin.h ├── ReadMe.txt ├── Resource.cpp ├── Resource.h ├── Scoop.cpp ├── Scoop.h ├── Spwan.cpp ├── Spwan.h ├── StillObj.cpp ├── StillObj.h ├── Sun.cpp ├── Sun.h ├── SunFlower.cpp ├── SunFlower.h ├── Zombies.cpp ├── Zombies.h ├── img ├── bg │ ├── GameBg.png │ ├── Start.png │ ├── end.png │ ├── prepare.png │ └── warning.png ├── card │ ├── 向日葵_卡.png │ ├── 坚果_卡.png │ ├── 寒冰射手_卡.png │ ├── 樱桃炸弹_卡.png │ ├── 窝瓜_卡.png │ ├── 豌豆射手_卡.png │ └── 食人花_卡.png └── model │ ├── ball.png │ ├── iceball.png │ ├── sun.png │ ├── 向日葵 │ ├── 0.png │ ├── 1.png │ ├── 2.png │ └── 白.png │ ├── 坚果 │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 白.png │ ├── 寒冰射手 │ ├── 0.png │ ├── 1.png │ ├── 2.png │ └── 白.png │ ├── 帽子僵尸 │ ├── attack │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ └── 6.jpg │ └── move │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── 普通僵尸 │ ├── attack │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ └── 6.jpg │ ├── bomb │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── dead │ │ ├── body │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ └── 7.jpg │ │ └── head │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ └── 7.jpg │ └── move │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ └── 6.jpg │ ├── 樱桃炸弹 │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ └── 白.png │ ├── 窝瓜 │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── attack │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ └── 4.jpg │ └── 白.png │ ├── 豌豆射手 │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 白.png │ ├── 铁桶僵尸 │ ├── attack │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ └── 6.jpg │ └── move │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ └── 6.jpg │ ├── 铁门僵尸 │ ├── attack │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ └── 6.jpg │ └── move │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ └── 铲子.png ├── music ├── bomb.mp3 ├── eat.mp3 ├── endmusic.wav ├── gamemusic.wav ├── hit.mp3 ├── level.mp3 ├── losemusic.mp3 ├── plant.mp3 ├── pumkin.mp3 ├── startmusic.wav └── zombies.mp3 ├── stdafx.cpp ├── stdafx.h └── targetver.h /ActiveObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/ActiveObj.cpp -------------------------------------------------------------------------------- /ActiveObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/ActiveObj.h -------------------------------------------------------------------------------- /Ball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Ball.h -------------------------------------------------------------------------------- /Bg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Bg.cpp -------------------------------------------------------------------------------- /Bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Bg.h -------------------------------------------------------------------------------- /Card.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Card.cpp -------------------------------------------------------------------------------- /Card.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Card.h -------------------------------------------------------------------------------- /Cherrybomb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Cherrybomb.cpp -------------------------------------------------------------------------------- /Cherrybomb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Cherrybomb.h -------------------------------------------------------------------------------- /Chomper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Chomper.cpp -------------------------------------------------------------------------------- /Chomper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Chomper.h -------------------------------------------------------------------------------- /DoorZombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/DoorZombie.cpp -------------------------------------------------------------------------------- /DoorZombie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/DoorZombie.h -------------------------------------------------------------------------------- /DrumZombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/DrumZombie.cpp -------------------------------------------------------------------------------- /DrumZombie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/DrumZombie.h -------------------------------------------------------------------------------- /Factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Factory.cpp -------------------------------------------------------------------------------- /Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Factory.h -------------------------------------------------------------------------------- /Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Game.cpp -------------------------------------------------------------------------------- /Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Game.h -------------------------------------------------------------------------------- /GameObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/GameObject.cpp -------------------------------------------------------------------------------- /GameObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/GameObject.h -------------------------------------------------------------------------------- /HatZombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/HatZombie.cpp -------------------------------------------------------------------------------- /HatZombie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/HatZombie.h -------------------------------------------------------------------------------- /IceShooter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/IceShooter.cpp -------------------------------------------------------------------------------- /IceShooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/IceShooter.h -------------------------------------------------------------------------------- /MouseThing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/MouseThing.cpp -------------------------------------------------------------------------------- /MouseThing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/MouseThing.h -------------------------------------------------------------------------------- /Nut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Nut.cpp -------------------------------------------------------------------------------- /Nut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Nut.h -------------------------------------------------------------------------------- /PeaShooter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/PeaShooter.cpp -------------------------------------------------------------------------------- /PeaShooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/PeaShooter.h -------------------------------------------------------------------------------- /PlantVSZombies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/PlantVSZombies.cpp -------------------------------------------------------------------------------- /PlantVSZombies.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/PlantVSZombies.vcxproj -------------------------------------------------------------------------------- /PlantVSZombies.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/PlantVSZombies.vcxproj.filters -------------------------------------------------------------------------------- /Pumkin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Pumkin.cpp -------------------------------------------------------------------------------- /Pumkin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Pumkin.h -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- 1 | 简单实现了部分植物大战僵尸的游戏玩法 用了opencv处理图像,C++写逻辑控制 2 | -------------------------------------------------------------------------------- /Resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Resource.cpp -------------------------------------------------------------------------------- /Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Resource.h -------------------------------------------------------------------------------- /Scoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Scoop.cpp -------------------------------------------------------------------------------- /Scoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Scoop.h -------------------------------------------------------------------------------- /Spwan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Spwan.cpp -------------------------------------------------------------------------------- /Spwan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Spwan.h -------------------------------------------------------------------------------- /StillObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/StillObj.cpp -------------------------------------------------------------------------------- /StillObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/StillObj.h -------------------------------------------------------------------------------- /Sun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Sun.cpp -------------------------------------------------------------------------------- /Sun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Sun.h -------------------------------------------------------------------------------- /SunFlower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/SunFlower.cpp -------------------------------------------------------------------------------- /SunFlower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/SunFlower.h -------------------------------------------------------------------------------- /Zombies.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Zombies.cpp -------------------------------------------------------------------------------- /Zombies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/Zombies.h -------------------------------------------------------------------------------- /img/bg/GameBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/bg/GameBg.png -------------------------------------------------------------------------------- /img/bg/Start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/bg/Start.png -------------------------------------------------------------------------------- /img/bg/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/bg/end.png -------------------------------------------------------------------------------- /img/bg/prepare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/bg/prepare.png -------------------------------------------------------------------------------- /img/bg/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/bg/warning.png -------------------------------------------------------------------------------- /img/card/向日葵_卡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/card/向日葵_卡.png -------------------------------------------------------------------------------- /img/card/坚果_卡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/card/坚果_卡.png -------------------------------------------------------------------------------- /img/card/寒冰射手_卡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/card/寒冰射手_卡.png -------------------------------------------------------------------------------- /img/card/樱桃炸弹_卡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/card/樱桃炸弹_卡.png -------------------------------------------------------------------------------- /img/card/窝瓜_卡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/card/窝瓜_卡.png -------------------------------------------------------------------------------- /img/card/豌豆射手_卡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/card/豌豆射手_卡.png -------------------------------------------------------------------------------- /img/card/食人花_卡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/card/食人花_卡.png -------------------------------------------------------------------------------- /img/model/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/ball.png -------------------------------------------------------------------------------- /img/model/iceball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/iceball.png -------------------------------------------------------------------------------- /img/model/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/sun.png -------------------------------------------------------------------------------- /img/model/向日葵/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/向日葵/0.png -------------------------------------------------------------------------------- /img/model/向日葵/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/向日葵/1.png -------------------------------------------------------------------------------- /img/model/向日葵/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/向日葵/2.png -------------------------------------------------------------------------------- /img/model/向日葵/白.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/向日葵/白.png -------------------------------------------------------------------------------- /img/model/坚果/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/坚果/0.png -------------------------------------------------------------------------------- /img/model/坚果/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/坚果/1.png -------------------------------------------------------------------------------- /img/model/坚果/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/坚果/2.png -------------------------------------------------------------------------------- /img/model/坚果/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/坚果/3.png -------------------------------------------------------------------------------- /img/model/坚果/白.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/坚果/白.png -------------------------------------------------------------------------------- /img/model/寒冰射手/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/寒冰射手/0.png -------------------------------------------------------------------------------- /img/model/寒冰射手/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/寒冰射手/1.png -------------------------------------------------------------------------------- /img/model/寒冰射手/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/寒冰射手/2.png -------------------------------------------------------------------------------- /img/model/寒冰射手/白.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/寒冰射手/白.png -------------------------------------------------------------------------------- /img/model/帽子僵尸/attack/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/attack/1.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/attack/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/attack/2.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/attack/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/attack/3.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/attack/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/attack/4.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/attack/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/attack/5.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/attack/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/attack/6.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/move/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/move/1.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/move/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/move/10.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/move/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/move/11.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/move/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/move/2.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/move/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/move/3.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/move/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/move/4.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/move/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/move/5.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/move/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/move/6.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/move/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/move/7.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/move/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/move/8.jpg -------------------------------------------------------------------------------- /img/model/帽子僵尸/move/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/帽子僵尸/move/9.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/attack/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/attack/1.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/attack/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/attack/2.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/attack/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/attack/3.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/attack/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/attack/4.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/attack/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/attack/5.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/attack/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/attack/6.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/bomb/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/bomb/1.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/bomb/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/bomb/10.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/bomb/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/bomb/2.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/bomb/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/bomb/3.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/bomb/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/bomb/4.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/bomb/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/bomb/5.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/bomb/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/bomb/6.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/bomb/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/bomb/7.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/bomb/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/bomb/8.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/bomb/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/bomb/9.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/body/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/body/1.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/body/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/body/2.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/body/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/body/3.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/body/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/body/4.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/body/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/body/5.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/body/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/body/6.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/body/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/body/7.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/head/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/head/1.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/head/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/head/2.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/head/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/head/3.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/head/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/head/4.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/head/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/head/5.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/head/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/head/6.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/dead/head/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/dead/head/7.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/move/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/move/1.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/move/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/move/2.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/move/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/move/3.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/move/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/move/4.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/move/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/move/5.jpg -------------------------------------------------------------------------------- /img/model/普通僵尸/move/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/普通僵尸/move/6.jpg -------------------------------------------------------------------------------- /img/model/樱桃炸弹/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/樱桃炸弹/0.png -------------------------------------------------------------------------------- /img/model/樱桃炸弹/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/樱桃炸弹/1.png -------------------------------------------------------------------------------- /img/model/樱桃炸弹/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/樱桃炸弹/2.png -------------------------------------------------------------------------------- /img/model/樱桃炸弹/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/樱桃炸弹/3.png -------------------------------------------------------------------------------- /img/model/樱桃炸弹/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/樱桃炸弹/4.png -------------------------------------------------------------------------------- /img/model/樱桃炸弹/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/樱桃炸弹/5.png -------------------------------------------------------------------------------- /img/model/樱桃炸弹/白.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/樱桃炸弹/白.png -------------------------------------------------------------------------------- /img/model/窝瓜/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/窝瓜/0.png -------------------------------------------------------------------------------- /img/model/窝瓜/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/窝瓜/1.png -------------------------------------------------------------------------------- /img/model/窝瓜/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/窝瓜/2.png -------------------------------------------------------------------------------- /img/model/窝瓜/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/窝瓜/3.png -------------------------------------------------------------------------------- /img/model/窝瓜/attack/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/窝瓜/attack/1.jpg -------------------------------------------------------------------------------- /img/model/窝瓜/attack/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/窝瓜/attack/2.jpg -------------------------------------------------------------------------------- /img/model/窝瓜/attack/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/窝瓜/attack/3.jpg -------------------------------------------------------------------------------- /img/model/窝瓜/attack/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/窝瓜/attack/4.jpg -------------------------------------------------------------------------------- /img/model/窝瓜/白.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/窝瓜/白.png -------------------------------------------------------------------------------- /img/model/豌豆射手/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/豌豆射手/0.png -------------------------------------------------------------------------------- /img/model/豌豆射手/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/豌豆射手/1.png -------------------------------------------------------------------------------- /img/model/豌豆射手/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/豌豆射手/2.png -------------------------------------------------------------------------------- /img/model/豌豆射手/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/豌豆射手/3.png -------------------------------------------------------------------------------- /img/model/豌豆射手/白.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/豌豆射手/白.png -------------------------------------------------------------------------------- /img/model/铁桶僵尸/attack/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/attack/1.jpg -------------------------------------------------------------------------------- /img/model/铁桶僵尸/attack/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/attack/2.jpg -------------------------------------------------------------------------------- /img/model/铁桶僵尸/attack/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/attack/3.jpg -------------------------------------------------------------------------------- /img/model/铁桶僵尸/attack/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/attack/4.jpg -------------------------------------------------------------------------------- /img/model/铁桶僵尸/attack/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/attack/5.jpg -------------------------------------------------------------------------------- /img/model/铁桶僵尸/attack/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/attack/6.jpg -------------------------------------------------------------------------------- /img/model/铁桶僵尸/move/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/move/1.jpg -------------------------------------------------------------------------------- /img/model/铁桶僵尸/move/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/move/2.jpg -------------------------------------------------------------------------------- /img/model/铁桶僵尸/move/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/move/3.jpg -------------------------------------------------------------------------------- /img/model/铁桶僵尸/move/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/move/4.jpg -------------------------------------------------------------------------------- /img/model/铁桶僵尸/move/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/move/5.jpg -------------------------------------------------------------------------------- /img/model/铁桶僵尸/move/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁桶僵尸/move/6.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/attack/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/attack/1.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/attack/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/attack/2.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/attack/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/attack/3.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/attack/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/attack/4.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/attack/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/attack/5.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/attack/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/attack/6.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/move/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/move/1.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/move/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/move/2.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/move/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/move/3.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/move/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/move/4.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/move/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/move/5.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/move/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/move/6.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/move/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/move/7.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/move/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/move/8.jpg -------------------------------------------------------------------------------- /img/model/铁门僵尸/move/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铁门僵尸/move/9.jpg -------------------------------------------------------------------------------- /img/model/铲子.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/img/model/铲子.png -------------------------------------------------------------------------------- /music/bomb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/music/bomb.mp3 -------------------------------------------------------------------------------- /music/eat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/music/eat.mp3 -------------------------------------------------------------------------------- /music/endmusic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/music/endmusic.wav -------------------------------------------------------------------------------- /music/gamemusic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/music/gamemusic.wav -------------------------------------------------------------------------------- /music/hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/music/hit.mp3 -------------------------------------------------------------------------------- /music/level.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/music/level.mp3 -------------------------------------------------------------------------------- /music/losemusic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/music/losemusic.mp3 -------------------------------------------------------------------------------- /music/plant.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/music/plant.mp3 -------------------------------------------------------------------------------- /music/pumkin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/music/pumkin.mp3 -------------------------------------------------------------------------------- /music/startmusic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/music/startmusic.wav -------------------------------------------------------------------------------- /music/zombies.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/music/zombies.mp3 -------------------------------------------------------------------------------- /stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/stdafx.cpp -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/stdafx.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Breeze-del/C-/HEAD/targetver.h --------------------------------------------------------------------------------