├── .gitignore ├── CMakeLists.txt ├── README.md ├── bin └── Release │ ├── Zombie5_bots.exe │ ├── Zombie5_lights_demo.exe │ ├── Zombie5_night_bots.exe │ ├── Zombie5_solo.exe │ ├── data │ ├── Sounds │ │ ├── step1.wav │ │ ├── step2.wav │ │ ├── step3.wav │ │ ├── step4.wav │ │ ├── step5.wav │ │ └── wind.wav │ ├── ak_shoot.flac │ ├── fire1.wav │ ├── fire2.wav │ ├── fire3.wav │ ├── font.ttf │ ├── ground1.jpg │ ├── ground2.jpg │ ├── ground3.jpg │ ├── ground4.jpg │ ├── minigun_fire.wav │ ├── minigun_start.wav │ ├── minigun_stop.wav │ ├── shaders │ │ ├── blur.frag │ │ ├── blurH.frag │ │ └── blurV.frag │ └── textures │ │ ├── blood.png │ │ ├── box.png │ │ ├── bullet.png │ │ ├── fire.png │ │ ├── guts.png │ │ ├── hunter │ │ ├── Top_Down_Survivor │ │ │ ├── feet │ │ │ │ ├── idle │ │ │ │ │ └── survivor-idle_0.png │ │ │ │ ├── run │ │ │ │ │ ├── survivor-run_0.png │ │ │ │ │ ├── survivor-run_1.png │ │ │ │ │ ├── survivor-run_10.png │ │ │ │ │ ├── survivor-run_11.png │ │ │ │ │ ├── survivor-run_12.png │ │ │ │ │ ├── survivor-run_13.png │ │ │ │ │ ├── survivor-run_14.png │ │ │ │ │ ├── survivor-run_15.png │ │ │ │ │ ├── survivor-run_16.png │ │ │ │ │ ├── survivor-run_17.png │ │ │ │ │ ├── survivor-run_18.png │ │ │ │ │ ├── survivor-run_19.png │ │ │ │ │ ├── survivor-run_2.png │ │ │ │ │ ├── survivor-run_3.png │ │ │ │ │ ├── survivor-run_4.png │ │ │ │ │ ├── survivor-run_5.png │ │ │ │ │ ├── survivor-run_6.png │ │ │ │ │ ├── survivor-run_7.png │ │ │ │ │ ├── survivor-run_8.png │ │ │ │ │ └── survivor-run_9.png │ │ │ │ ├── strafe_left │ │ │ │ │ ├── survivor-strafe_left_0.png │ │ │ │ │ ├── survivor-strafe_left_1.png │ │ │ │ │ ├── survivor-strafe_left_10.png │ │ │ │ │ ├── survivor-strafe_left_11.png │ │ │ │ │ ├── survivor-strafe_left_12.png │ │ │ │ │ ├── survivor-strafe_left_13.png │ │ │ │ │ ├── survivor-strafe_left_14.png │ │ │ │ │ ├── survivor-strafe_left_15.png │ │ │ │ │ ├── survivor-strafe_left_16.png │ │ │ │ │ ├── survivor-strafe_left_17.png │ │ │ │ │ ├── survivor-strafe_left_18.png │ │ │ │ │ ├── survivor-strafe_left_19.png │ │ │ │ │ ├── survivor-strafe_left_2.png │ │ │ │ │ ├── survivor-strafe_left_3.png │ │ │ │ │ ├── survivor-strafe_left_4.png │ │ │ │ │ ├── survivor-strafe_left_5.png │ │ │ │ │ ├── survivor-strafe_left_6.png │ │ │ │ │ ├── survivor-strafe_left_7.png │ │ │ │ │ ├── survivor-strafe_left_8.png │ │ │ │ │ └── survivor-strafe_left_9.png │ │ │ │ ├── strafe_right │ │ │ │ │ ├── survivor-strafe_right_0.png │ │ │ │ │ ├── survivor-strafe_right_1.png │ │ │ │ │ ├── survivor-strafe_right_10.png │ │ │ │ │ ├── survivor-strafe_right_11.png │ │ │ │ │ ├── survivor-strafe_right_12.png │ │ │ │ │ ├── survivor-strafe_right_13.png │ │ │ │ │ ├── survivor-strafe_right_14.png │ │ │ │ │ ├── survivor-strafe_right_15.png │ │ │ │ │ ├── survivor-strafe_right_16.png │ │ │ │ │ ├── survivor-strafe_right_17.png │ │ │ │ │ ├── survivor-strafe_right_18.png │ │ │ │ │ ├── survivor-strafe_right_19.png │ │ │ │ │ ├── survivor-strafe_right_2.png │ │ │ │ │ ├── survivor-strafe_right_3.png │ │ │ │ │ ├── survivor-strafe_right_4.png │ │ │ │ │ ├── survivor-strafe_right_5.png │ │ │ │ │ ├── survivor-strafe_right_6.png │ │ │ │ │ ├── survivor-strafe_right_7.png │ │ │ │ │ ├── survivor-strafe_right_8.png │ │ │ │ │ └── survivor-strafe_right_9.png │ │ │ │ └── walk │ │ │ │ │ ├── survivor-walk_0.png │ │ │ │ │ ├── survivor-walk_1.png │ │ │ │ │ ├── survivor-walk_10.png │ │ │ │ │ ├── survivor-walk_11.png │ │ │ │ │ ├── survivor-walk_12.png │ │ │ │ │ ├── survivor-walk_13.png │ │ │ │ │ ├── survivor-walk_14.png │ │ │ │ │ ├── survivor-walk_15.png │ │ │ │ │ ├── survivor-walk_16.png │ │ │ │ │ ├── survivor-walk_17.png │ │ │ │ │ ├── survivor-walk_18.png │ │ │ │ │ ├── survivor-walk_19.png │ │ │ │ │ ├── survivor-walk_2.png │ │ │ │ │ ├── survivor-walk_3.png │ │ │ │ │ ├── survivor-walk_4.png │ │ │ │ │ ├── survivor-walk_5.png │ │ │ │ │ ├── survivor-walk_6.png │ │ │ │ │ ├── survivor-walk_7.png │ │ │ │ │ ├── survivor-walk_8.png │ │ │ │ │ └── survivor-walk_9.png │ │ │ ├── flashlight │ │ │ │ ├── idle │ │ │ │ │ ├── survivor-idle_flashlight_0.png │ │ │ │ │ ├── survivor-idle_flashlight_1.png │ │ │ │ │ ├── survivor-idle_flashlight_10.png │ │ │ │ │ ├── survivor-idle_flashlight_11.png │ │ │ │ │ ├── survivor-idle_flashlight_12.png │ │ │ │ │ ├── survivor-idle_flashlight_13.png │ │ │ │ │ ├── survivor-idle_flashlight_14.png │ │ │ │ │ ├── survivor-idle_flashlight_15.png │ │ │ │ │ ├── survivor-idle_flashlight_16.png │ │ │ │ │ ├── survivor-idle_flashlight_17.png │ │ │ │ │ ├── survivor-idle_flashlight_18.png │ │ │ │ │ ├── survivor-idle_flashlight_19.png │ │ │ │ │ ├── survivor-idle_flashlight_2.png │ │ │ │ │ ├── survivor-idle_flashlight_3.png │ │ │ │ │ ├── survivor-idle_flashlight_4.png │ │ │ │ │ ├── survivor-idle_flashlight_5.png │ │ │ │ │ ├── survivor-idle_flashlight_6.png │ │ │ │ │ ├── survivor-idle_flashlight_7.png │ │ │ │ │ ├── survivor-idle_flashlight_8.png │ │ │ │ │ └── survivor-idle_flashlight_9.png │ │ │ │ ├── meleeattack │ │ │ │ │ ├── survivor-meleeattack_flashlight_0.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_1.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_10.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_11.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_12.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_13.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_14.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_2.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_3.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_4.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_5.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_6.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_7.png │ │ │ │ │ ├── survivor-meleeattack_flashlight_8.png │ │ │ │ │ └── survivor-meleeattack_flashlight_9.png │ │ │ │ └── move │ │ │ │ │ ├── survivor-move_flashlight_0.png │ │ │ │ │ ├── survivor-move_flashlight_1.png │ │ │ │ │ ├── survivor-move_flashlight_10.png │ │ │ │ │ ├── survivor-move_flashlight_11.png │ │ │ │ │ ├── survivor-move_flashlight_12.png │ │ │ │ │ ├── survivor-move_flashlight_13.png │ │ │ │ │ ├── survivor-move_flashlight_14.png │ │ │ │ │ ├── survivor-move_flashlight_15.png │ │ │ │ │ ├── survivor-move_flashlight_16.png │ │ │ │ │ ├── survivor-move_flashlight_17.png │ │ │ │ │ ├── survivor-move_flashlight_18.png │ │ │ │ │ ├── survivor-move_flashlight_19.png │ │ │ │ │ ├── survivor-move_flashlight_2.png │ │ │ │ │ ├── survivor-move_flashlight_3.png │ │ │ │ │ ├── survivor-move_flashlight_4.png │ │ │ │ │ ├── survivor-move_flashlight_5.png │ │ │ │ │ ├── survivor-move_flashlight_6.png │ │ │ │ │ ├── survivor-move_flashlight_7.png │ │ │ │ │ ├── survivor-move_flashlight_8.png │ │ │ │ │ └── survivor-move_flashlight_9.png │ │ │ ├── handgun │ │ │ │ ├── idle │ │ │ │ │ ├── survivor-idle_handgun_0.png │ │ │ │ │ ├── survivor-idle_handgun_1.png │ │ │ │ │ ├── survivor-idle_handgun_10.png │ │ │ │ │ ├── survivor-idle_handgun_11.png │ │ │ │ │ ├── survivor-idle_handgun_12.png │ │ │ │ │ ├── survivor-idle_handgun_13.png │ │ │ │ │ ├── survivor-idle_handgun_14.png │ │ │ │ │ ├── survivor-idle_handgun_15.png │ │ │ │ │ ├── survivor-idle_handgun_16.png │ │ │ │ │ ├── survivor-idle_handgun_17.png │ │ │ │ │ ├── survivor-idle_handgun_18.png │ │ │ │ │ ├── survivor-idle_handgun_19.png │ │ │ │ │ ├── survivor-idle_handgun_2.png │ │ │ │ │ ├── survivor-idle_handgun_3.png │ │ │ │ │ ├── survivor-idle_handgun_4.png │ │ │ │ │ ├── survivor-idle_handgun_5.png │ │ │ │ │ ├── survivor-idle_handgun_6.png │ │ │ │ │ ├── survivor-idle_handgun_7.png │ │ │ │ │ ├── survivor-idle_handgun_8.png │ │ │ │ │ └── survivor-idle_handgun_9.png │ │ │ │ ├── meleeattack │ │ │ │ │ ├── survivor-meleeattack_handgun_0.png │ │ │ │ │ ├── survivor-meleeattack_handgun_1.png │ │ │ │ │ ├── survivor-meleeattack_handgun_10.png │ │ │ │ │ ├── survivor-meleeattack_handgun_11.png │ │ │ │ │ ├── survivor-meleeattack_handgun_12.png │ │ │ │ │ ├── survivor-meleeattack_handgun_13.png │ │ │ │ │ ├── survivor-meleeattack_handgun_14.png │ │ │ │ │ ├── survivor-meleeattack_handgun_2.png │ │ │ │ │ ├── survivor-meleeattack_handgun_3.png │ │ │ │ │ ├── survivor-meleeattack_handgun_4.png │ │ │ │ │ ├── survivor-meleeattack_handgun_5.png │ │ │ │ │ ├── survivor-meleeattack_handgun_6.png │ │ │ │ │ ├── survivor-meleeattack_handgun_7.png │ │ │ │ │ ├── survivor-meleeattack_handgun_8.png │ │ │ │ │ └── survivor-meleeattack_handgun_9.png │ │ │ │ ├── move │ │ │ │ │ ├── survivor-move_handgun_0.png │ │ │ │ │ ├── survivor-move_handgun_1.png │ │ │ │ │ ├── survivor-move_handgun_10.png │ │ │ │ │ ├── survivor-move_handgun_11.png │ │ │ │ │ ├── survivor-move_handgun_12.png │ │ │ │ │ ├── survivor-move_handgun_13.png │ │ │ │ │ ├── survivor-move_handgun_14.png │ │ │ │ │ ├── survivor-move_handgun_15.png │ │ │ │ │ ├── survivor-move_handgun_16.png │ │ │ │ │ ├── survivor-move_handgun_17.png │ │ │ │ │ ├── survivor-move_handgun_18.png │ │ │ │ │ ├── survivor-move_handgun_19.png │ │ │ │ │ ├── survivor-move_handgun_2.png │ │ │ │ │ ├── survivor-move_handgun_3.png │ │ │ │ │ ├── survivor-move_handgun_4.png │ │ │ │ │ ├── survivor-move_handgun_5.png │ │ │ │ │ ├── survivor-move_handgun_6.png │ │ │ │ │ ├── survivor-move_handgun_7.png │ │ │ │ │ ├── survivor-move_handgun_8.png │ │ │ │ │ └── survivor-move_handgun_9.png │ │ │ │ ├── reload │ │ │ │ │ ├── survivor-reload_handgun_0.png │ │ │ │ │ ├── survivor-reload_handgun_1.png │ │ │ │ │ ├── survivor-reload_handgun_10.png │ │ │ │ │ ├── survivor-reload_handgun_11.png │ │ │ │ │ ├── survivor-reload_handgun_12.png │ │ │ │ │ ├── survivor-reload_handgun_13.png │ │ │ │ │ ├── survivor-reload_handgun_14.png │ │ │ │ │ ├── survivor-reload_handgun_2.png │ │ │ │ │ ├── survivor-reload_handgun_3.png │ │ │ │ │ ├── survivor-reload_handgun_4.png │ │ │ │ │ ├── survivor-reload_handgun_5.png │ │ │ │ │ ├── survivor-reload_handgun_6.png │ │ │ │ │ ├── survivor-reload_handgun_7.png │ │ │ │ │ ├── survivor-reload_handgun_8.png │ │ │ │ │ └── survivor-reload_handgun_9.png │ │ │ │ └── shoot │ │ │ │ │ ├── survivor-shoot_handgun_0.png │ │ │ │ │ ├── survivor-shoot_handgun_1.png │ │ │ │ │ └── survivor-shoot_handgun_2.png │ │ │ ├── knife │ │ │ │ ├── idle │ │ │ │ │ ├── survivor-idle_knife_0.png │ │ │ │ │ ├── survivor-idle_knife_1.png │ │ │ │ │ ├── survivor-idle_knife_10.png │ │ │ │ │ ├── survivor-idle_knife_11.png │ │ │ │ │ ├── survivor-idle_knife_12.png │ │ │ │ │ ├── survivor-idle_knife_13.png │ │ │ │ │ ├── survivor-idle_knife_14.png │ │ │ │ │ ├── survivor-idle_knife_15.png │ │ │ │ │ ├── survivor-idle_knife_16.png │ │ │ │ │ ├── survivor-idle_knife_17.png │ │ │ │ │ ├── survivor-idle_knife_18.png │ │ │ │ │ ├── survivor-idle_knife_19.png │ │ │ │ │ ├── survivor-idle_knife_2.png │ │ │ │ │ ├── survivor-idle_knife_3.png │ │ │ │ │ ├── survivor-idle_knife_4.png │ │ │ │ │ ├── survivor-idle_knife_5.png │ │ │ │ │ ├── survivor-idle_knife_6.png │ │ │ │ │ ├── survivor-idle_knife_7.png │ │ │ │ │ ├── survivor-idle_knife_8.png │ │ │ │ │ └── survivor-idle_knife_9.png │ │ │ │ ├── meleeattack │ │ │ │ │ ├── survivor-meleeattack_knife_0.png │ │ │ │ │ ├── survivor-meleeattack_knife_1.png │ │ │ │ │ ├── survivor-meleeattack_knife_10.png │ │ │ │ │ ├── survivor-meleeattack_knife_11.png │ │ │ │ │ ├── survivor-meleeattack_knife_12.png │ │ │ │ │ ├── survivor-meleeattack_knife_13.png │ │ │ │ │ ├── survivor-meleeattack_knife_14.png │ │ │ │ │ ├── survivor-meleeattack_knife_2.png │ │ │ │ │ ├── survivor-meleeattack_knife_3.png │ │ │ │ │ ├── survivor-meleeattack_knife_4.png │ │ │ │ │ ├── survivor-meleeattack_knife_5.png │ │ │ │ │ ├── survivor-meleeattack_knife_6.png │ │ │ │ │ ├── survivor-meleeattack_knife_7.png │ │ │ │ │ ├── survivor-meleeattack_knife_8.png │ │ │ │ │ └── survivor-meleeattack_knife_9.png │ │ │ │ └── move │ │ │ │ │ ├── survivor-move_knife_0.png │ │ │ │ │ ├── survivor-move_knife_1.png │ │ │ │ │ ├── survivor-move_knife_10.png │ │ │ │ │ ├── survivor-move_knife_11.png │ │ │ │ │ ├── survivor-move_knife_12.png │ │ │ │ │ ├── survivor-move_knife_13.png │ │ │ │ │ ├── survivor-move_knife_14.png │ │ │ │ │ ├── survivor-move_knife_15.png │ │ │ │ │ ├── survivor-move_knife_16.png │ │ │ │ │ ├── survivor-move_knife_17.png │ │ │ │ │ ├── survivor-move_knife_18.png │ │ │ │ │ ├── survivor-move_knife_19.png │ │ │ │ │ ├── survivor-move_knife_2.png │ │ │ │ │ ├── survivor-move_knife_3.png │ │ │ │ │ ├── survivor-move_knife_4.png │ │ │ │ │ ├── survivor-move_knife_5.png │ │ │ │ │ ├── survivor-move_knife_6.png │ │ │ │ │ ├── survivor-move_knife_7.png │ │ │ │ │ ├── survivor-move_knife_8.png │ │ │ │ │ └── survivor-move_knife_9.png │ │ │ ├── rifle │ │ │ │ ├── idle │ │ │ │ │ ├── survivor-idle_rifle_0.png │ │ │ │ │ ├── survivor-idle_rifle_1.png │ │ │ │ │ ├── survivor-idle_rifle_10.png │ │ │ │ │ ├── survivor-idle_rifle_11.png │ │ │ │ │ ├── survivor-idle_rifle_12.png │ │ │ │ │ ├── survivor-idle_rifle_13.png │ │ │ │ │ ├── survivor-idle_rifle_14.png │ │ │ │ │ ├── survivor-idle_rifle_15.png │ │ │ │ │ ├── survivor-idle_rifle_16.png │ │ │ │ │ ├── survivor-idle_rifle_17.png │ │ │ │ │ ├── survivor-idle_rifle_18.png │ │ │ │ │ ├── survivor-idle_rifle_19.png │ │ │ │ │ ├── survivor-idle_rifle_2.png │ │ │ │ │ ├── survivor-idle_rifle_3.png │ │ │ │ │ ├── survivor-idle_rifle_4.png │ │ │ │ │ ├── survivor-idle_rifle_5.png │ │ │ │ │ ├── survivor-idle_rifle_6.png │ │ │ │ │ ├── survivor-idle_rifle_7.png │ │ │ │ │ ├── survivor-idle_rifle_8.png │ │ │ │ │ └── survivor-idle_rifle_9.png │ │ │ │ ├── meleeattack │ │ │ │ │ ├── survivor-meleeattack_rifle_0.png │ │ │ │ │ ├── survivor-meleeattack_rifle_1.png │ │ │ │ │ ├── survivor-meleeattack_rifle_10.png │ │ │ │ │ ├── survivor-meleeattack_rifle_11.png │ │ │ │ │ ├── survivor-meleeattack_rifle_12.png │ │ │ │ │ ├── survivor-meleeattack_rifle_13.png │ │ │ │ │ ├── survivor-meleeattack_rifle_14.png │ │ │ │ │ ├── survivor-meleeattack_rifle_2.png │ │ │ │ │ ├── survivor-meleeattack_rifle_3.png │ │ │ │ │ ├── survivor-meleeattack_rifle_4.png │ │ │ │ │ ├── survivor-meleeattack_rifle_5.png │ │ │ │ │ ├── survivor-meleeattack_rifle_6.png │ │ │ │ │ ├── survivor-meleeattack_rifle_7.png │ │ │ │ │ ├── survivor-meleeattack_rifle_8.png │ │ │ │ │ └── survivor-meleeattack_rifle_9.png │ │ │ │ ├── move │ │ │ │ │ ├── survivor-move_rifle_0.png │ │ │ │ │ ├── survivor-move_rifle_1.png │ │ │ │ │ ├── survivor-move_rifle_10.png │ │ │ │ │ ├── survivor-move_rifle_11.png │ │ │ │ │ ├── survivor-move_rifle_12.png │ │ │ │ │ ├── survivor-move_rifle_13.png │ │ │ │ │ ├── survivor-move_rifle_14.png │ │ │ │ │ ├── survivor-move_rifle_15.png │ │ │ │ │ ├── survivor-move_rifle_16.png │ │ │ │ │ ├── survivor-move_rifle_17.png │ │ │ │ │ ├── survivor-move_rifle_18.png │ │ │ │ │ ├── survivor-move_rifle_19.png │ │ │ │ │ ├── survivor-move_rifle_2.png │ │ │ │ │ ├── survivor-move_rifle_3.png │ │ │ │ │ ├── survivor-move_rifle_4.png │ │ │ │ │ ├── survivor-move_rifle_5.png │ │ │ │ │ ├── survivor-move_rifle_6.png │ │ │ │ │ ├── survivor-move_rifle_7.png │ │ │ │ │ ├── survivor-move_rifle_8.png │ │ │ │ │ └── survivor-move_rifle_9.png │ │ │ │ ├── reload │ │ │ │ │ ├── survivor-reload_rifle_0.png │ │ │ │ │ ├── survivor-reload_rifle_1.png │ │ │ │ │ ├── survivor-reload_rifle_10.png │ │ │ │ │ ├── survivor-reload_rifle_11.png │ │ │ │ │ ├── survivor-reload_rifle_12.png │ │ │ │ │ ├── survivor-reload_rifle_13.png │ │ │ │ │ ├── survivor-reload_rifle_14.png │ │ │ │ │ ├── survivor-reload_rifle_15.png │ │ │ │ │ ├── survivor-reload_rifle_16.png │ │ │ │ │ ├── survivor-reload_rifle_17.png │ │ │ │ │ ├── survivor-reload_rifle_18.png │ │ │ │ │ ├── survivor-reload_rifle_19.png │ │ │ │ │ ├── survivor-reload_rifle_2.png │ │ │ │ │ ├── survivor-reload_rifle_3.png │ │ │ │ │ ├── survivor-reload_rifle_4.png │ │ │ │ │ ├── survivor-reload_rifle_5.png │ │ │ │ │ ├── survivor-reload_rifle_6.png │ │ │ │ │ ├── survivor-reload_rifle_7.png │ │ │ │ │ ├── survivor-reload_rifle_8.png │ │ │ │ │ └── survivor-reload_rifle_9.png │ │ │ │ └── shoot │ │ │ │ │ ├── survivor-shoot_rifle_0.png │ │ │ │ │ ├── survivor-shoot_rifle_1.png │ │ │ │ │ └── survivor-shoot_rifle_2.png │ │ │ └── shotgun │ │ │ │ ├── idle │ │ │ │ ├── survivor-idle_shotgun_0.png │ │ │ │ ├── survivor-idle_shotgun_1.png │ │ │ │ ├── survivor-idle_shotgun_10.png │ │ │ │ ├── survivor-idle_shotgun_11.png │ │ │ │ ├── survivor-idle_shotgun_12.png │ │ │ │ ├── survivor-idle_shotgun_13.png │ │ │ │ ├── survivor-idle_shotgun_14.png │ │ │ │ ├── survivor-idle_shotgun_15.png │ │ │ │ ├── survivor-idle_shotgun_16.png │ │ │ │ ├── survivor-idle_shotgun_17.png │ │ │ │ ├── survivor-idle_shotgun_18.png │ │ │ │ ├── survivor-idle_shotgun_19.png │ │ │ │ ├── survivor-idle_shotgun_2.png │ │ │ │ ├── survivor-idle_shotgun_3.png │ │ │ │ ├── survivor-idle_shotgun_4.png │ │ │ │ ├── survivor-idle_shotgun_5.png │ │ │ │ ├── survivor-idle_shotgun_6.png │ │ │ │ ├── survivor-idle_shotgun_7.png │ │ │ │ ├── survivor-idle_shotgun_8.png │ │ │ │ └── survivor-idle_shotgun_9.png │ │ │ │ ├── meleeattack │ │ │ │ ├── survivor-meleeattack_shotgun_0.png │ │ │ │ ├── survivor-meleeattack_shotgun_1.png │ │ │ │ ├── survivor-meleeattack_shotgun_10.png │ │ │ │ ├── survivor-meleeattack_shotgun_11.png │ │ │ │ ├── survivor-meleeattack_shotgun_12.png │ │ │ │ ├── survivor-meleeattack_shotgun_13.png │ │ │ │ ├── survivor-meleeattack_shotgun_14.png │ │ │ │ ├── survivor-meleeattack_shotgun_2.png │ │ │ │ ├── survivor-meleeattack_shotgun_3.png │ │ │ │ ├── survivor-meleeattack_shotgun_4.png │ │ │ │ ├── survivor-meleeattack_shotgun_5.png │ │ │ │ ├── survivor-meleeattack_shotgun_6.png │ │ │ │ ├── survivor-meleeattack_shotgun_7.png │ │ │ │ ├── survivor-meleeattack_shotgun_8.png │ │ │ │ └── survivor-meleeattack_shotgun_9.png │ │ │ │ ├── move │ │ │ │ ├── survivor-move_shotgun_0.png │ │ │ │ ├── survivor-move_shotgun_1.png │ │ │ │ ├── survivor-move_shotgun_10.png │ │ │ │ ├── survivor-move_shotgun_11.png │ │ │ │ ├── survivor-move_shotgun_12.png │ │ │ │ ├── survivor-move_shotgun_13.png │ │ │ │ ├── survivor-move_shotgun_14.png │ │ │ │ ├── survivor-move_shotgun_15.png │ │ │ │ ├── survivor-move_shotgun_16.png │ │ │ │ ├── survivor-move_shotgun_17.png │ │ │ │ ├── survivor-move_shotgun_18.png │ │ │ │ ├── survivor-move_shotgun_19.png │ │ │ │ ├── survivor-move_shotgun_2.png │ │ │ │ ├── survivor-move_shotgun_3.png │ │ │ │ ├── survivor-move_shotgun_4.png │ │ │ │ ├── survivor-move_shotgun_5.png │ │ │ │ ├── survivor-move_shotgun_6.png │ │ │ │ ├── survivor-move_shotgun_7.png │ │ │ │ ├── survivor-move_shotgun_8.png │ │ │ │ └── survivor-move_shotgun_9.png │ │ │ │ ├── reload │ │ │ │ ├── survivor-reload_shotgun_0.png │ │ │ │ ├── survivor-reload_shotgun_1.png │ │ │ │ ├── survivor-reload_shotgun_10.png │ │ │ │ ├── survivor-reload_shotgun_11.png │ │ │ │ ├── survivor-reload_shotgun_12.png │ │ │ │ ├── survivor-reload_shotgun_13.png │ │ │ │ ├── survivor-reload_shotgun_14.png │ │ │ │ ├── survivor-reload_shotgun_15.png │ │ │ │ ├── survivor-reload_shotgun_16.png │ │ │ │ ├── survivor-reload_shotgun_17.png │ │ │ │ ├── survivor-reload_shotgun_18.png │ │ │ │ ├── survivor-reload_shotgun_19.png │ │ │ │ ├── survivor-reload_shotgun_2.png │ │ │ │ ├── survivor-reload_shotgun_3.png │ │ │ │ ├── survivor-reload_shotgun_4.png │ │ │ │ ├── survivor-reload_shotgun_5.png │ │ │ │ ├── survivor-reload_shotgun_6.png │ │ │ │ ├── survivor-reload_shotgun_7.png │ │ │ │ ├── survivor-reload_shotgun_8.png │ │ │ │ └── survivor-reload_shotgun_9.png │ │ │ │ └── shoot │ │ │ │ ├── survivor-shoot_shotgun_0.png │ │ │ │ ├── survivor-shoot_shotgun_1.png │ │ │ │ └── survivor-shoot_shotgun_2.png │ │ ├── hunter_gun_idle.png │ │ ├── hunter_gun_move.png │ │ ├── hunter_gun_shoot.png │ │ ├── hunter_idle.png │ │ ├── hunter_move.png │ │ ├── hunter_rifle_reload.png │ │ ├── hunter_shoot.png │ │ ├── hunter_shotgun_idle.png │ │ ├── hunter_shotgun_move.png │ │ ├── hunter_shotgun_shoot.png │ │ ├── hunter_strafe.png │ │ └── hunter_walk.png │ │ ├── round.png │ │ ├── shadow.png │ │ ├── shell.png │ │ ├── smoke.png │ │ ├── smoke2.png │ │ ├── turret_basic.png │ │ ├── turret_v1.png │ │ └── zombie │ │ ├── tds_zombie │ │ └── export │ │ │ ├── skeleton-attack_0.png │ │ │ ├── skeleton-attack_1.png │ │ │ ├── skeleton-attack_2.png │ │ │ ├── skeleton-attack_3.png │ │ │ ├── skeleton-attack_4.png │ │ │ ├── skeleton-attack_5.png │ │ │ ├── skeleton-attack_6.png │ │ │ ├── skeleton-attack_7.png │ │ │ ├── skeleton-attack_8.png │ │ │ ├── skeleton-idle_0.png │ │ │ ├── skeleton-idle_1.png │ │ │ ├── skeleton-idle_10.png │ │ │ ├── skeleton-idle_11.png │ │ │ ├── skeleton-idle_12.png │ │ │ ├── skeleton-idle_13.png │ │ │ ├── skeleton-idle_14.png │ │ │ ├── skeleton-idle_15.png │ │ │ ├── skeleton-idle_16.png │ │ │ ├── skeleton-idle_2.png │ │ │ ├── skeleton-idle_3.png │ │ │ ├── skeleton-idle_4.png │ │ │ ├── skeleton-idle_5.png │ │ │ ├── skeleton-idle_6.png │ │ │ ├── skeleton-idle_7.png │ │ │ ├── skeleton-idle_8.png │ │ │ ├── skeleton-idle_9.png │ │ │ ├── skeleton-move_0.png │ │ │ ├── skeleton-move_1.png │ │ │ ├── skeleton-move_10.png │ │ │ ├── skeleton-move_11.png │ │ │ ├── skeleton-move_12.png │ │ │ ├── skeleton-move_13.png │ │ │ ├── skeleton-move_14.png │ │ │ ├── skeleton-move_15.png │ │ │ ├── skeleton-move_16.png │ │ │ ├── skeleton-move_2.png │ │ │ ├── skeleton-move_3.png │ │ │ ├── skeleton-move_4.png │ │ │ ├── skeleton-move_5.png │ │ │ ├── skeleton-move_6.png │ │ │ ├── skeleton-move_7.png │ │ │ ├── skeleton-move_8.png │ │ │ └── skeleton-move_9.png │ │ ├── zombie_attack.png │ │ └── zombie_move.png │ └── openal32.dll ├── data ├── Sounds │ ├── step1.wav │ ├── step2.wav │ ├── step3.wav │ ├── step4.wav │ ├── step5.wav │ └── wind.wav ├── ak_shoot.flac ├── fire1.wav ├── fire2.wav ├── fire3.wav ├── font.ttf ├── ground1.jpg ├── ground2.jpg ├── ground3.jpg ├── ground4.jpg ├── minigun_fire.wav ├── minigun_start.wav ├── minigun_stop.wav ├── shaders │ ├── blur.frag │ ├── blurH.frag │ └── blurV.frag └── textures │ ├── blood.png │ ├── box.png │ ├── bullet.png │ ├── fire.png │ ├── guts.png │ ├── hunter │ ├── Top_Down_Survivor │ │ ├── feet │ │ │ ├── idle │ │ │ │ └── survivor-idle_0.png │ │ │ ├── run │ │ │ │ ├── survivor-run_0.png │ │ │ │ ├── survivor-run_1.png │ │ │ │ ├── survivor-run_10.png │ │ │ │ ├── survivor-run_11.png │ │ │ │ ├── survivor-run_12.png │ │ │ │ ├── survivor-run_13.png │ │ │ │ ├── survivor-run_14.png │ │ │ │ ├── survivor-run_15.png │ │ │ │ ├── survivor-run_16.png │ │ │ │ ├── survivor-run_17.png │ │ │ │ ├── survivor-run_18.png │ │ │ │ ├── survivor-run_19.png │ │ │ │ ├── survivor-run_2.png │ │ │ │ ├── survivor-run_3.png │ │ │ │ ├── survivor-run_4.png │ │ │ │ ├── survivor-run_5.png │ │ │ │ ├── survivor-run_6.png │ │ │ │ ├── survivor-run_7.png │ │ │ │ ├── survivor-run_8.png │ │ │ │ └── survivor-run_9.png │ │ │ ├── strafe_left │ │ │ │ ├── survivor-strafe_left_0.png │ │ │ │ ├── survivor-strafe_left_1.png │ │ │ │ ├── survivor-strafe_left_10.png │ │ │ │ ├── survivor-strafe_left_11.png │ │ │ │ ├── survivor-strafe_left_12.png │ │ │ │ ├── survivor-strafe_left_13.png │ │ │ │ ├── survivor-strafe_left_14.png │ │ │ │ ├── survivor-strafe_left_15.png │ │ │ │ ├── survivor-strafe_left_16.png │ │ │ │ ├── survivor-strafe_left_17.png │ │ │ │ ├── survivor-strafe_left_18.png │ │ │ │ ├── survivor-strafe_left_19.png │ │ │ │ ├── survivor-strafe_left_2.png │ │ │ │ ├── survivor-strafe_left_3.png │ │ │ │ ├── survivor-strafe_left_4.png │ │ │ │ ├── survivor-strafe_left_5.png │ │ │ │ ├── survivor-strafe_left_6.png │ │ │ │ ├── survivor-strafe_left_7.png │ │ │ │ ├── survivor-strafe_left_8.png │ │ │ │ └── survivor-strafe_left_9.png │ │ │ ├── strafe_right │ │ │ │ ├── survivor-strafe_right_0.png │ │ │ │ ├── survivor-strafe_right_1.png │ │ │ │ ├── survivor-strafe_right_10.png │ │ │ │ ├── survivor-strafe_right_11.png │ │ │ │ ├── survivor-strafe_right_12.png │ │ │ │ ├── survivor-strafe_right_13.png │ │ │ │ ├── survivor-strafe_right_14.png │ │ │ │ ├── survivor-strafe_right_15.png │ │ │ │ ├── survivor-strafe_right_16.png │ │ │ │ ├── survivor-strafe_right_17.png │ │ │ │ ├── survivor-strafe_right_18.png │ │ │ │ ├── survivor-strafe_right_19.png │ │ │ │ ├── survivor-strafe_right_2.png │ │ │ │ ├── survivor-strafe_right_3.png │ │ │ │ ├── survivor-strafe_right_4.png │ │ │ │ ├── survivor-strafe_right_5.png │ │ │ │ ├── survivor-strafe_right_6.png │ │ │ │ ├── survivor-strafe_right_7.png │ │ │ │ ├── survivor-strafe_right_8.png │ │ │ │ └── survivor-strafe_right_9.png │ │ │ └── walk │ │ │ │ ├── survivor-walk_0.png │ │ │ │ ├── survivor-walk_1.png │ │ │ │ ├── survivor-walk_10.png │ │ │ │ ├── survivor-walk_11.png │ │ │ │ ├── survivor-walk_12.png │ │ │ │ ├── survivor-walk_13.png │ │ │ │ ├── survivor-walk_14.png │ │ │ │ ├── survivor-walk_15.png │ │ │ │ ├── survivor-walk_16.png │ │ │ │ ├── survivor-walk_17.png │ │ │ │ ├── survivor-walk_18.png │ │ │ │ ├── survivor-walk_19.png │ │ │ │ ├── survivor-walk_2.png │ │ │ │ ├── survivor-walk_3.png │ │ │ │ ├── survivor-walk_4.png │ │ │ │ ├── survivor-walk_5.png │ │ │ │ ├── survivor-walk_6.png │ │ │ │ ├── survivor-walk_7.png │ │ │ │ ├── survivor-walk_8.png │ │ │ │ └── survivor-walk_9.png │ │ ├── flashlight │ │ │ ├── idle │ │ │ │ ├── survivor-idle_flashlight_0.png │ │ │ │ ├── survivor-idle_flashlight_1.png │ │ │ │ ├── survivor-idle_flashlight_10.png │ │ │ │ ├── survivor-idle_flashlight_11.png │ │ │ │ ├── survivor-idle_flashlight_12.png │ │ │ │ ├── survivor-idle_flashlight_13.png │ │ │ │ ├── survivor-idle_flashlight_14.png │ │ │ │ ├── survivor-idle_flashlight_15.png │ │ │ │ ├── survivor-idle_flashlight_16.png │ │ │ │ ├── survivor-idle_flashlight_17.png │ │ │ │ ├── survivor-idle_flashlight_18.png │ │ │ │ ├── survivor-idle_flashlight_19.png │ │ │ │ ├── survivor-idle_flashlight_2.png │ │ │ │ ├── survivor-idle_flashlight_3.png │ │ │ │ ├── survivor-idle_flashlight_4.png │ │ │ │ ├── survivor-idle_flashlight_5.png │ │ │ │ ├── survivor-idle_flashlight_6.png │ │ │ │ ├── survivor-idle_flashlight_7.png │ │ │ │ ├── survivor-idle_flashlight_8.png │ │ │ │ └── survivor-idle_flashlight_9.png │ │ │ ├── meleeattack │ │ │ │ ├── survivor-meleeattack_flashlight_0.png │ │ │ │ ├── survivor-meleeattack_flashlight_1.png │ │ │ │ ├── survivor-meleeattack_flashlight_10.png │ │ │ │ ├── survivor-meleeattack_flashlight_11.png │ │ │ │ ├── survivor-meleeattack_flashlight_12.png │ │ │ │ ├── survivor-meleeattack_flashlight_13.png │ │ │ │ ├── survivor-meleeattack_flashlight_14.png │ │ │ │ ├── survivor-meleeattack_flashlight_2.png │ │ │ │ ├── survivor-meleeattack_flashlight_3.png │ │ │ │ ├── survivor-meleeattack_flashlight_4.png │ │ │ │ ├── survivor-meleeattack_flashlight_5.png │ │ │ │ ├── survivor-meleeattack_flashlight_6.png │ │ │ │ ├── survivor-meleeattack_flashlight_7.png │ │ │ │ ├── survivor-meleeattack_flashlight_8.png │ │ │ │ └── survivor-meleeattack_flashlight_9.png │ │ │ └── move │ │ │ │ ├── survivor-move_flashlight_0.png │ │ │ │ ├── survivor-move_flashlight_1.png │ │ │ │ ├── survivor-move_flashlight_10.png │ │ │ │ ├── survivor-move_flashlight_11.png │ │ │ │ ├── survivor-move_flashlight_12.png │ │ │ │ ├── survivor-move_flashlight_13.png │ │ │ │ ├── survivor-move_flashlight_14.png │ │ │ │ ├── survivor-move_flashlight_15.png │ │ │ │ ├── survivor-move_flashlight_16.png │ │ │ │ ├── survivor-move_flashlight_17.png │ │ │ │ ├── survivor-move_flashlight_18.png │ │ │ │ ├── survivor-move_flashlight_19.png │ │ │ │ ├── survivor-move_flashlight_2.png │ │ │ │ ├── survivor-move_flashlight_3.png │ │ │ │ ├── survivor-move_flashlight_4.png │ │ │ │ ├── survivor-move_flashlight_5.png │ │ │ │ ├── survivor-move_flashlight_6.png │ │ │ │ ├── survivor-move_flashlight_7.png │ │ │ │ ├── survivor-move_flashlight_8.png │ │ │ │ └── survivor-move_flashlight_9.png │ │ ├── handgun │ │ │ ├── idle │ │ │ │ ├── survivor-idle_handgun_0.png │ │ │ │ ├── survivor-idle_handgun_1.png │ │ │ │ ├── survivor-idle_handgun_10.png │ │ │ │ ├── survivor-idle_handgun_11.png │ │ │ │ ├── survivor-idle_handgun_12.png │ │ │ │ ├── survivor-idle_handgun_13.png │ │ │ │ ├── survivor-idle_handgun_14.png │ │ │ │ ├── survivor-idle_handgun_15.png │ │ │ │ ├── survivor-idle_handgun_16.png │ │ │ │ ├── survivor-idle_handgun_17.png │ │ │ │ ├── survivor-idle_handgun_18.png │ │ │ │ ├── survivor-idle_handgun_19.png │ │ │ │ ├── survivor-idle_handgun_2.png │ │ │ │ ├── survivor-idle_handgun_3.png │ │ │ │ ├── survivor-idle_handgun_4.png │ │ │ │ ├── survivor-idle_handgun_5.png │ │ │ │ ├── survivor-idle_handgun_6.png │ │ │ │ ├── survivor-idle_handgun_7.png │ │ │ │ ├── survivor-idle_handgun_8.png │ │ │ │ └── survivor-idle_handgun_9.png │ │ │ ├── meleeattack │ │ │ │ ├── survivor-meleeattack_handgun_0.png │ │ │ │ ├── survivor-meleeattack_handgun_1.png │ │ │ │ ├── survivor-meleeattack_handgun_10.png │ │ │ │ ├── survivor-meleeattack_handgun_11.png │ │ │ │ ├── survivor-meleeattack_handgun_12.png │ │ │ │ ├── survivor-meleeattack_handgun_13.png │ │ │ │ ├── survivor-meleeattack_handgun_14.png │ │ │ │ ├── survivor-meleeattack_handgun_2.png │ │ │ │ ├── survivor-meleeattack_handgun_3.png │ │ │ │ ├── survivor-meleeattack_handgun_4.png │ │ │ │ ├── survivor-meleeattack_handgun_5.png │ │ │ │ ├── survivor-meleeattack_handgun_6.png │ │ │ │ ├── survivor-meleeattack_handgun_7.png │ │ │ │ ├── survivor-meleeattack_handgun_8.png │ │ │ │ └── survivor-meleeattack_handgun_9.png │ │ │ ├── move │ │ │ │ ├── survivor-move_handgun_0.png │ │ │ │ ├── survivor-move_handgun_1.png │ │ │ │ ├── survivor-move_handgun_10.png │ │ │ │ ├── survivor-move_handgun_11.png │ │ │ │ ├── survivor-move_handgun_12.png │ │ │ │ ├── survivor-move_handgun_13.png │ │ │ │ ├── survivor-move_handgun_14.png │ │ │ │ ├── survivor-move_handgun_15.png │ │ │ │ ├── survivor-move_handgun_16.png │ │ │ │ ├── survivor-move_handgun_17.png │ │ │ │ ├── survivor-move_handgun_18.png │ │ │ │ ├── survivor-move_handgun_19.png │ │ │ │ ├── survivor-move_handgun_2.png │ │ │ │ ├── survivor-move_handgun_3.png │ │ │ │ ├── survivor-move_handgun_4.png │ │ │ │ ├── survivor-move_handgun_5.png │ │ │ │ ├── survivor-move_handgun_6.png │ │ │ │ ├── survivor-move_handgun_7.png │ │ │ │ ├── survivor-move_handgun_8.png │ │ │ │ └── survivor-move_handgun_9.png │ │ │ ├── reload │ │ │ │ ├── survivor-reload_handgun_0.png │ │ │ │ ├── survivor-reload_handgun_1.png │ │ │ │ ├── survivor-reload_handgun_10.png │ │ │ │ ├── survivor-reload_handgun_11.png │ │ │ │ ├── survivor-reload_handgun_12.png │ │ │ │ ├── survivor-reload_handgun_13.png │ │ │ │ ├── survivor-reload_handgun_14.png │ │ │ │ ├── survivor-reload_handgun_2.png │ │ │ │ ├── survivor-reload_handgun_3.png │ │ │ │ ├── survivor-reload_handgun_4.png │ │ │ │ ├── survivor-reload_handgun_5.png │ │ │ │ ├── survivor-reload_handgun_6.png │ │ │ │ ├── survivor-reload_handgun_7.png │ │ │ │ ├── survivor-reload_handgun_8.png │ │ │ │ └── survivor-reload_handgun_9.png │ │ │ └── shoot │ │ │ │ ├── survivor-shoot_handgun_0.png │ │ │ │ ├── survivor-shoot_handgun_1.png │ │ │ │ └── survivor-shoot_handgun_2.png │ │ ├── knife │ │ │ ├── idle │ │ │ │ ├── survivor-idle_knife_0.png │ │ │ │ ├── survivor-idle_knife_1.png │ │ │ │ ├── survivor-idle_knife_10.png │ │ │ │ ├── survivor-idle_knife_11.png │ │ │ │ ├── survivor-idle_knife_12.png │ │ │ │ ├── survivor-idle_knife_13.png │ │ │ │ ├── survivor-idle_knife_14.png │ │ │ │ ├── survivor-idle_knife_15.png │ │ │ │ ├── survivor-idle_knife_16.png │ │ │ │ ├── survivor-idle_knife_17.png │ │ │ │ ├── survivor-idle_knife_18.png │ │ │ │ ├── survivor-idle_knife_19.png │ │ │ │ ├── survivor-idle_knife_2.png │ │ │ │ ├── survivor-idle_knife_3.png │ │ │ │ ├── survivor-idle_knife_4.png │ │ │ │ ├── survivor-idle_knife_5.png │ │ │ │ ├── survivor-idle_knife_6.png │ │ │ │ ├── survivor-idle_knife_7.png │ │ │ │ ├── survivor-idle_knife_8.png │ │ │ │ └── survivor-idle_knife_9.png │ │ │ ├── meleeattack │ │ │ │ ├── survivor-meleeattack_knife_0.png │ │ │ │ ├── survivor-meleeattack_knife_1.png │ │ │ │ ├── survivor-meleeattack_knife_10.png │ │ │ │ ├── survivor-meleeattack_knife_11.png │ │ │ │ ├── survivor-meleeattack_knife_12.png │ │ │ │ ├── survivor-meleeattack_knife_13.png │ │ │ │ ├── survivor-meleeattack_knife_14.png │ │ │ │ ├── survivor-meleeattack_knife_2.png │ │ │ │ ├── survivor-meleeattack_knife_3.png │ │ │ │ ├── survivor-meleeattack_knife_4.png │ │ │ │ ├── survivor-meleeattack_knife_5.png │ │ │ │ ├── survivor-meleeattack_knife_6.png │ │ │ │ ├── survivor-meleeattack_knife_7.png │ │ │ │ ├── survivor-meleeattack_knife_8.png │ │ │ │ └── survivor-meleeattack_knife_9.png │ │ │ └── move │ │ │ │ ├── survivor-move_knife_0.png │ │ │ │ ├── survivor-move_knife_1.png │ │ │ │ ├── survivor-move_knife_10.png │ │ │ │ ├── survivor-move_knife_11.png │ │ │ │ ├── survivor-move_knife_12.png │ │ │ │ ├── survivor-move_knife_13.png │ │ │ │ ├── survivor-move_knife_14.png │ │ │ │ ├── survivor-move_knife_15.png │ │ │ │ ├── survivor-move_knife_16.png │ │ │ │ ├── survivor-move_knife_17.png │ │ │ │ ├── survivor-move_knife_18.png │ │ │ │ ├── survivor-move_knife_19.png │ │ │ │ ├── survivor-move_knife_2.png │ │ │ │ ├── survivor-move_knife_3.png │ │ │ │ ├── survivor-move_knife_4.png │ │ │ │ ├── survivor-move_knife_5.png │ │ │ │ ├── survivor-move_knife_6.png │ │ │ │ ├── survivor-move_knife_7.png │ │ │ │ ├── survivor-move_knife_8.png │ │ │ │ └── survivor-move_knife_9.png │ │ ├── rifle │ │ │ ├── idle │ │ │ │ ├── survivor-idle_rifle_0.png │ │ │ │ ├── survivor-idle_rifle_1.png │ │ │ │ ├── survivor-idle_rifle_10.png │ │ │ │ ├── survivor-idle_rifle_11.png │ │ │ │ ├── survivor-idle_rifle_12.png │ │ │ │ ├── survivor-idle_rifle_13.png │ │ │ │ ├── survivor-idle_rifle_14.png │ │ │ │ ├── survivor-idle_rifle_15.png │ │ │ │ ├── survivor-idle_rifle_16.png │ │ │ │ ├── survivor-idle_rifle_17.png │ │ │ │ ├── survivor-idle_rifle_18.png │ │ │ │ ├── survivor-idle_rifle_19.png │ │ │ │ ├── survivor-idle_rifle_2.png │ │ │ │ ├── survivor-idle_rifle_3.png │ │ │ │ ├── survivor-idle_rifle_4.png │ │ │ │ ├── survivor-idle_rifle_5.png │ │ │ │ ├── survivor-idle_rifle_6.png │ │ │ │ ├── survivor-idle_rifle_7.png │ │ │ │ ├── survivor-idle_rifle_8.png │ │ │ │ └── survivor-idle_rifle_9.png │ │ │ ├── meleeattack │ │ │ │ ├── survivor-meleeattack_rifle_0.png │ │ │ │ ├── survivor-meleeattack_rifle_1.png │ │ │ │ ├── survivor-meleeattack_rifle_10.png │ │ │ │ ├── survivor-meleeattack_rifle_11.png │ │ │ │ ├── survivor-meleeattack_rifle_12.png │ │ │ │ ├── survivor-meleeattack_rifle_13.png │ │ │ │ ├── survivor-meleeattack_rifle_14.png │ │ │ │ ├── survivor-meleeattack_rifle_2.png │ │ │ │ ├── survivor-meleeattack_rifle_3.png │ │ │ │ ├── survivor-meleeattack_rifle_4.png │ │ │ │ ├── survivor-meleeattack_rifle_5.png │ │ │ │ ├── survivor-meleeattack_rifle_6.png │ │ │ │ ├── survivor-meleeattack_rifle_7.png │ │ │ │ ├── survivor-meleeattack_rifle_8.png │ │ │ │ └── survivor-meleeattack_rifle_9.png │ │ │ ├── move │ │ │ │ ├── survivor-move_rifle_0.png │ │ │ │ ├── survivor-move_rifle_1.png │ │ │ │ ├── survivor-move_rifle_10.png │ │ │ │ ├── survivor-move_rifle_11.png │ │ │ │ ├── survivor-move_rifle_12.png │ │ │ │ ├── survivor-move_rifle_13.png │ │ │ │ ├── survivor-move_rifle_14.png │ │ │ │ ├── survivor-move_rifle_15.png │ │ │ │ ├── survivor-move_rifle_16.png │ │ │ │ ├── survivor-move_rifle_17.png │ │ │ │ ├── survivor-move_rifle_18.png │ │ │ │ ├── survivor-move_rifle_19.png │ │ │ │ ├── survivor-move_rifle_2.png │ │ │ │ ├── survivor-move_rifle_3.png │ │ │ │ ├── survivor-move_rifle_4.png │ │ │ │ ├── survivor-move_rifle_5.png │ │ │ │ ├── survivor-move_rifle_6.png │ │ │ │ ├── survivor-move_rifle_7.png │ │ │ │ ├── survivor-move_rifle_8.png │ │ │ │ └── survivor-move_rifle_9.png │ │ │ ├── reload │ │ │ │ ├── survivor-reload_rifle_0.png │ │ │ │ ├── survivor-reload_rifle_1.png │ │ │ │ ├── survivor-reload_rifle_10.png │ │ │ │ ├── survivor-reload_rifle_11.png │ │ │ │ ├── survivor-reload_rifle_12.png │ │ │ │ ├── survivor-reload_rifle_13.png │ │ │ │ ├── survivor-reload_rifle_14.png │ │ │ │ ├── survivor-reload_rifle_15.png │ │ │ │ ├── survivor-reload_rifle_16.png │ │ │ │ ├── survivor-reload_rifle_17.png │ │ │ │ ├── survivor-reload_rifle_18.png │ │ │ │ ├── survivor-reload_rifle_19.png │ │ │ │ ├── survivor-reload_rifle_2.png │ │ │ │ ├── survivor-reload_rifle_3.png │ │ │ │ ├── survivor-reload_rifle_4.png │ │ │ │ ├── survivor-reload_rifle_5.png │ │ │ │ ├── survivor-reload_rifle_6.png │ │ │ │ ├── survivor-reload_rifle_7.png │ │ │ │ ├── survivor-reload_rifle_8.png │ │ │ │ └── survivor-reload_rifle_9.png │ │ │ └── shoot │ │ │ │ ├── survivor-shoot_rifle_0.png │ │ │ │ ├── survivor-shoot_rifle_1.png │ │ │ │ └── survivor-shoot_rifle_2.png │ │ └── shotgun │ │ │ ├── idle │ │ │ ├── survivor-idle_shotgun_0.png │ │ │ ├── survivor-idle_shotgun_1.png │ │ │ ├── survivor-idle_shotgun_10.png │ │ │ ├── survivor-idle_shotgun_11.png │ │ │ ├── survivor-idle_shotgun_12.png │ │ │ ├── survivor-idle_shotgun_13.png │ │ │ ├── survivor-idle_shotgun_14.png │ │ │ ├── survivor-idle_shotgun_15.png │ │ │ ├── survivor-idle_shotgun_16.png │ │ │ ├── survivor-idle_shotgun_17.png │ │ │ ├── survivor-idle_shotgun_18.png │ │ │ ├── survivor-idle_shotgun_19.png │ │ │ ├── survivor-idle_shotgun_2.png │ │ │ ├── survivor-idle_shotgun_3.png │ │ │ ├── survivor-idle_shotgun_4.png │ │ │ ├── survivor-idle_shotgun_5.png │ │ │ ├── survivor-idle_shotgun_6.png │ │ │ ├── survivor-idle_shotgun_7.png │ │ │ ├── survivor-idle_shotgun_8.png │ │ │ └── survivor-idle_shotgun_9.png │ │ │ ├── meleeattack │ │ │ ├── survivor-meleeattack_shotgun_0.png │ │ │ ├── survivor-meleeattack_shotgun_1.png │ │ │ ├── survivor-meleeattack_shotgun_10.png │ │ │ ├── survivor-meleeattack_shotgun_11.png │ │ │ ├── survivor-meleeattack_shotgun_12.png │ │ │ ├── survivor-meleeattack_shotgun_13.png │ │ │ ├── survivor-meleeattack_shotgun_14.png │ │ │ ├── survivor-meleeattack_shotgun_2.png │ │ │ ├── survivor-meleeattack_shotgun_3.png │ │ │ ├── survivor-meleeattack_shotgun_4.png │ │ │ ├── survivor-meleeattack_shotgun_5.png │ │ │ ├── survivor-meleeattack_shotgun_6.png │ │ │ ├── survivor-meleeattack_shotgun_7.png │ │ │ ├── survivor-meleeattack_shotgun_8.png │ │ │ └── survivor-meleeattack_shotgun_9.png │ │ │ ├── move │ │ │ ├── survivor-move_shotgun_0.png │ │ │ ├── survivor-move_shotgun_1.png │ │ │ ├── survivor-move_shotgun_10.png │ │ │ ├── survivor-move_shotgun_11.png │ │ │ ├── survivor-move_shotgun_12.png │ │ │ ├── survivor-move_shotgun_13.png │ │ │ ├── survivor-move_shotgun_14.png │ │ │ ├── survivor-move_shotgun_15.png │ │ │ ├── survivor-move_shotgun_16.png │ │ │ ├── survivor-move_shotgun_17.png │ │ │ ├── survivor-move_shotgun_18.png │ │ │ ├── survivor-move_shotgun_19.png │ │ │ ├── survivor-move_shotgun_2.png │ │ │ ├── survivor-move_shotgun_3.png │ │ │ ├── survivor-move_shotgun_4.png │ │ │ ├── survivor-move_shotgun_5.png │ │ │ ├── survivor-move_shotgun_6.png │ │ │ ├── survivor-move_shotgun_7.png │ │ │ ├── survivor-move_shotgun_8.png │ │ │ └── survivor-move_shotgun_9.png │ │ │ ├── reload │ │ │ ├── survivor-reload_shotgun_0.png │ │ │ ├── survivor-reload_shotgun_1.png │ │ │ ├── survivor-reload_shotgun_10.png │ │ │ ├── survivor-reload_shotgun_11.png │ │ │ ├── survivor-reload_shotgun_12.png │ │ │ ├── survivor-reload_shotgun_13.png │ │ │ ├── survivor-reload_shotgun_14.png │ │ │ ├── survivor-reload_shotgun_15.png │ │ │ ├── survivor-reload_shotgun_16.png │ │ │ ├── survivor-reload_shotgun_17.png │ │ │ ├── survivor-reload_shotgun_18.png │ │ │ ├── survivor-reload_shotgun_19.png │ │ │ ├── survivor-reload_shotgun_2.png │ │ │ ├── survivor-reload_shotgun_3.png │ │ │ ├── survivor-reload_shotgun_4.png │ │ │ ├── survivor-reload_shotgun_5.png │ │ │ ├── survivor-reload_shotgun_6.png │ │ │ ├── survivor-reload_shotgun_7.png │ │ │ ├── survivor-reload_shotgun_8.png │ │ │ └── survivor-reload_shotgun_9.png │ │ │ └── shoot │ │ │ ├── survivor-shoot_shotgun_0.png │ │ │ ├── survivor-shoot_shotgun_1.png │ │ │ └── survivor-shoot_shotgun_2.png │ ├── hunter_gun_idle.png │ ├── hunter_gun_move.png │ ├── hunter_gun_shoot.png │ ├── hunter_idle.png │ ├── hunter_move.png │ ├── hunter_rifle_reload.png │ ├── hunter_shoot.png │ ├── hunter_shotgun_idle.png │ ├── hunter_shotgun_move.png │ ├── hunter_shotgun_shoot.png │ ├── hunter_strafe.png │ └── hunter_walk.png │ ├── round.png │ ├── shadow.png │ ├── shell.png │ ├── smoke.png │ ├── smoke2.png │ ├── turret_basic.png │ ├── turret_v1.png │ └── zombie │ ├── tds_zombie │ └── export │ │ ├── skeleton-attack_0.png │ │ ├── skeleton-attack_1.png │ │ ├── skeleton-attack_2.png │ │ ├── skeleton-attack_3.png │ │ ├── skeleton-attack_4.png │ │ ├── skeleton-attack_5.png │ │ ├── skeleton-attack_6.png │ │ ├── skeleton-attack_7.png │ │ ├── skeleton-attack_8.png │ │ ├── skeleton-idle_0.png │ │ ├── skeleton-idle_1.png │ │ ├── skeleton-idle_10.png │ │ ├── skeleton-idle_11.png │ │ ├── skeleton-idle_12.png │ │ ├── skeleton-idle_13.png │ │ ├── skeleton-idle_14.png │ │ ├── skeleton-idle_15.png │ │ ├── skeleton-idle_16.png │ │ ├── skeleton-idle_2.png │ │ ├── skeleton-idle_3.png │ │ ├── skeleton-idle_4.png │ │ ├── skeleton-idle_5.png │ │ ├── skeleton-idle_6.png │ │ ├── skeleton-idle_7.png │ │ ├── skeleton-idle_8.png │ │ ├── skeleton-idle_9.png │ │ ├── skeleton-move_0.png │ │ ├── skeleton-move_1.png │ │ ├── skeleton-move_10.png │ │ ├── skeleton-move_11.png │ │ ├── skeleton-move_12.png │ │ ├── skeleton-move_13.png │ │ ├── skeleton-move_14.png │ │ ├── skeleton-move_15.png │ │ ├── skeleton-move_16.png │ │ ├── skeleton-move_2.png │ │ ├── skeleton-move_3.png │ │ ├── skeleton-move_4.png │ │ ├── skeleton-move_5.png │ │ ├── skeleton-move_6.png │ │ ├── skeleton-move_7.png │ │ ├── skeleton-move_8.png │ │ └── skeleton-move_9.png │ ├── zombie_attack.png │ └── zombie_move.png ├── img └── illustration.png ├── include ├── Blur │ ├── DynamicBlur.h │ └── blur.frag ├── Bot.hpp ├── Hunter.hpp ├── HunterBase.hpp ├── LightEngine │ ├── LightEngine.hpp │ ├── LightUtils.hpp │ └── ShadowCaster.hpp ├── Props │ ├── BulletShell.hpp │ ├── Explosion.hpp │ ├── ExplosionProvider.hpp │ ├── Fire.hpp │ ├── Guts.hpp │ ├── Props.hpp │ ├── Smoke.hpp │ ├── Wall.hpp │ └── WoodBox.hpp ├── System │ ├── Animation.hpp │ ├── AutoAim.hpp │ ├── ChainedObject.hpp │ ├── Config.hpp │ ├── Cooldown.hpp │ ├── EntityTypes.hpp │ ├── EventManager.hpp │ ├── GameRender.hpp │ ├── GameWorld.hpp │ ├── GraphicsUtils.hpp │ ├── Level.hpp │ ├── LifeForm.hpp │ ├── PoolObject.hpp │ ├── SoundPlayer.hpp │ ├── StandardEntity.hpp │ ├── Utils.hpp │ ├── WorldEntity.hpp │ └── WorldEntityPool.hpp ├── Turret.hpp ├── UnitedEngine │ ├── Types.hpp │ ├── U_2DBody.h │ ├── U_2DCollisionManager.h │ ├── U_2DConstraint.h │ ├── UnitedEngine.h │ └── Vec2.h ├── Weapons │ ├── AK.hpp │ ├── Bullet.hpp │ ├── Pistol.hpp │ ├── Shotgun.hpp │ ├── Turrets │ │ └── TurretBase.hpp │ ├── Weapon.hpp │ ├── WeaponStatics.hpp │ └── Weapons.hpp └── Zombie.hpp └── src ├── Blur ├── DynamicBlur.cpp └── blur.frag ├── Bot.cpp ├── Hunter.cpp ├── HunterBase.cpp ├── LightEngine ├── LightEngine.cpp ├── LightUtils.cpp └── ShadowCaster.cpp ├── Props ├── BulletShell.cpp ├── Explosion.cpp ├── ExplosionProvider.cpp ├── Fire.cpp ├── Guts.cpp ├── Smoke.cpp └── Wall.cpp ├── System ├── Animation.cpp ├── AutoAim.cpp ├── Cooldown.cpp ├── EventManager.cpp ├── GameRender.cpp ├── GameWorld.cpp ├── GraphicsUtils.cpp ├── Level.cpp ├── LifeForm.cpp ├── SoundPlayer.cpp ├── Utils.cpp └── WorldEntity.cpp ├── Turret.cpp ├── UnitedEngine ├── U_2DBody.cpp ├── U_2DCollisionManager.cpp ├── U_2DConstraint.cpp └── Vec2.cpp ├── Weapons ├── AK.cpp ├── Bullet.cpp ├── Pistol.cpp ├── Shotgun.cpp └── Weapon.cpp ├── Zombie.cpp └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/README.md -------------------------------------------------------------------------------- /bin/Release/Zombie5_bots.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/Zombie5_bots.exe -------------------------------------------------------------------------------- /bin/Release/Zombie5_lights_demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/Zombie5_lights_demo.exe -------------------------------------------------------------------------------- /bin/Release/Zombie5_night_bots.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/Zombie5_night_bots.exe -------------------------------------------------------------------------------- /bin/Release/Zombie5_solo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/Zombie5_solo.exe -------------------------------------------------------------------------------- /bin/Release/data/Sounds/step1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/Sounds/step1.wav -------------------------------------------------------------------------------- /bin/Release/data/Sounds/step2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/Sounds/step2.wav -------------------------------------------------------------------------------- /bin/Release/data/Sounds/step3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/Sounds/step3.wav -------------------------------------------------------------------------------- /bin/Release/data/Sounds/step4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/Sounds/step4.wav -------------------------------------------------------------------------------- /bin/Release/data/Sounds/step5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/Sounds/step5.wav -------------------------------------------------------------------------------- /bin/Release/data/Sounds/wind.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/Sounds/wind.wav -------------------------------------------------------------------------------- /bin/Release/data/ak_shoot.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/ak_shoot.flac -------------------------------------------------------------------------------- /bin/Release/data/fire1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/fire1.wav -------------------------------------------------------------------------------- /bin/Release/data/fire2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/fire2.wav -------------------------------------------------------------------------------- /bin/Release/data/fire3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/fire3.wav -------------------------------------------------------------------------------- /bin/Release/data/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/font.ttf -------------------------------------------------------------------------------- /bin/Release/data/ground1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/ground1.jpg -------------------------------------------------------------------------------- /bin/Release/data/ground2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/ground2.jpg -------------------------------------------------------------------------------- /bin/Release/data/ground3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/ground3.jpg -------------------------------------------------------------------------------- /bin/Release/data/ground4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/ground4.jpg -------------------------------------------------------------------------------- /bin/Release/data/minigun_fire.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/minigun_fire.wav -------------------------------------------------------------------------------- /bin/Release/data/minigun_start.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/minigun_start.wav -------------------------------------------------------------------------------- /bin/Release/data/minigun_stop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/minigun_stop.wav -------------------------------------------------------------------------------- /bin/Release/data/shaders/blur.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/shaders/blur.frag -------------------------------------------------------------------------------- /bin/Release/data/shaders/blurH.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/shaders/blurH.frag -------------------------------------------------------------------------------- /bin/Release/data/shaders/blurV.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/shaders/blurV.frag -------------------------------------------------------------------------------- /bin/Release/data/textures/blood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/blood.png -------------------------------------------------------------------------------- /bin/Release/data/textures/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/box.png -------------------------------------------------------------------------------- /bin/Release/data/textures/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/bullet.png -------------------------------------------------------------------------------- /bin/Release/data/textures/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/fire.png -------------------------------------------------------------------------------- /bin/Release/data/textures/guts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/guts.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/idle/survivor-idle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/idle/survivor-idle_0.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_0.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_1.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_10.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_11.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_12.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_13.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_14.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_15.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_16.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_17.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_18.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_19.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_2.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_3.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_4.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_5.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_6.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_7.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_8.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_9.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_0.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_1.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_10.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_11.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_12.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_13.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_14.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_15.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_16.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_17.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_18.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_19.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_2.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_3.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_4.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_5.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_6.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_7.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_8.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_9.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_0.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_1.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_2.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_3.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_4.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_5.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_6.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_7.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_8.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_9.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_0.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_1.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_2.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_3.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_4.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_5.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_6.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_7.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_8.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_9.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_0.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_1.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_2.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_3.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_4.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_5.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_6.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_7.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_8.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_9.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_0.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_1.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_2.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_3.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_4.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_5.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_6.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_7.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_8.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_9.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_gun_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_gun_idle.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_gun_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_gun_move.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_gun_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_gun_shoot.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_idle.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_move.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_rifle_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_rifle_reload.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_shoot.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_shotgun_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_shotgun_idle.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_shotgun_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_shotgun_move.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_shotgun_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_shotgun_shoot.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_strafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_strafe.png -------------------------------------------------------------------------------- /bin/Release/data/textures/hunter/hunter_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/hunter/hunter_walk.png -------------------------------------------------------------------------------- /bin/Release/data/textures/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/round.png -------------------------------------------------------------------------------- /bin/Release/data/textures/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/shadow.png -------------------------------------------------------------------------------- /bin/Release/data/textures/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/shell.png -------------------------------------------------------------------------------- /bin/Release/data/textures/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/smoke.png -------------------------------------------------------------------------------- /bin/Release/data/textures/smoke2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/smoke2.png -------------------------------------------------------------------------------- /bin/Release/data/textures/turret_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/turret_basic.png -------------------------------------------------------------------------------- /bin/Release/data/textures/turret_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/turret_v1.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_0.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_1.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_2.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_3.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_4.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_5.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_6.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_7.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-attack_8.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_0.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_1.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_10.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_11.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_12.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_13.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_14.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_15.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_16.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_2.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_3.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_4.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_5.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_6.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_7.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_8.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-idle_9.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_0.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_1.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_10.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_11.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_12.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_13.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_14.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_15.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_16.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_2.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_3.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_4.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_5.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_6.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_7.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_8.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/tds_zombie/export/skeleton-move_9.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/zombie_attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/zombie_attack.png -------------------------------------------------------------------------------- /bin/Release/data/textures/zombie/zombie_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/data/textures/zombie/zombie_move.png -------------------------------------------------------------------------------- /bin/Release/openal32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/bin/Release/openal32.dll -------------------------------------------------------------------------------- /data/Sounds/step1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/Sounds/step1.wav -------------------------------------------------------------------------------- /data/Sounds/step2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/Sounds/step2.wav -------------------------------------------------------------------------------- /data/Sounds/step3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/Sounds/step3.wav -------------------------------------------------------------------------------- /data/Sounds/step4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/Sounds/step4.wav -------------------------------------------------------------------------------- /data/Sounds/step5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/Sounds/step5.wav -------------------------------------------------------------------------------- /data/Sounds/wind.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/Sounds/wind.wav -------------------------------------------------------------------------------- /data/ak_shoot.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/ak_shoot.flac -------------------------------------------------------------------------------- /data/fire1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/fire1.wav -------------------------------------------------------------------------------- /data/fire2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/fire2.wav -------------------------------------------------------------------------------- /data/fire3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/fire3.wav -------------------------------------------------------------------------------- /data/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/font.ttf -------------------------------------------------------------------------------- /data/ground1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/ground1.jpg -------------------------------------------------------------------------------- /data/ground2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/ground2.jpg -------------------------------------------------------------------------------- /data/ground3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/ground3.jpg -------------------------------------------------------------------------------- /data/ground4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/ground4.jpg -------------------------------------------------------------------------------- /data/minigun_fire.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/minigun_fire.wav -------------------------------------------------------------------------------- /data/minigun_start.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/minigun_start.wav -------------------------------------------------------------------------------- /data/minigun_stop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/minigun_stop.wav -------------------------------------------------------------------------------- /data/shaders/blur.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/shaders/blur.frag -------------------------------------------------------------------------------- /data/shaders/blurH.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/shaders/blurH.frag -------------------------------------------------------------------------------- /data/shaders/blurV.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/shaders/blurV.frag -------------------------------------------------------------------------------- /data/textures/blood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/blood.png -------------------------------------------------------------------------------- /data/textures/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/box.png -------------------------------------------------------------------------------- /data/textures/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/bullet.png -------------------------------------------------------------------------------- /data/textures/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/fire.png -------------------------------------------------------------------------------- /data/textures/guts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/guts.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/idle/survivor-idle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/idle/survivor-idle_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/run/survivor-run_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_left/survivor-strafe_left_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/strafe_right/survivor-strafe_right_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/feet/walk/survivor-walk_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/idle/survivor-idle_flashlight_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/flashlight/move/survivor-move_flashlight_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/idle/survivor-idle_handgun_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/move/survivor-move_handgun_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/reload/survivor-reload_handgun_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/shoot/survivor-shoot_handgun_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/shoot/survivor-shoot_handgun_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/shoot/survivor-shoot_handgun_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/shoot/survivor-shoot_handgun_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/handgun/shoot/survivor-shoot_handgun_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/handgun/shoot/survivor-shoot_handgun_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/idle/survivor-idle_knife_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/knife/move/survivor-move_knife_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/idle/survivor-idle_rifle_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/move/survivor-move_rifle_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/reload/survivor-reload_rifle_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/shoot/survivor-shoot_rifle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/shoot/survivor-shoot_rifle_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/shoot/survivor-shoot_rifle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/shoot/survivor-shoot_rifle_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/rifle/shoot/survivor-shoot_rifle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/rifle/shoot/survivor-shoot_rifle_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/idle/survivor-idle_shotgun_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/move/survivor-move_shotgun_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_10.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_11.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_12.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_13.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_14.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_15.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_16.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_17.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_18.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_19.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_2.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_3.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_4.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_5.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_6.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_7.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_8.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/reload/survivor-reload_shotgun_9.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/shoot/survivor-shoot_shotgun_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/shoot/survivor-shoot_shotgun_0.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/shoot/survivor-shoot_shotgun_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/shoot/survivor-shoot_shotgun_1.png -------------------------------------------------------------------------------- /data/textures/hunter/Top_Down_Survivor/shotgun/shoot/survivor-shoot_shotgun_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/Top_Down_Survivor/shotgun/shoot/survivor-shoot_shotgun_2.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_gun_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_gun_idle.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_gun_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_gun_move.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_gun_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_gun_shoot.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_idle.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_move.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_rifle_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_rifle_reload.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_shoot.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_shotgun_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_shotgun_idle.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_shotgun_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_shotgun_move.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_shotgun_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_shotgun_shoot.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_strafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_strafe.png -------------------------------------------------------------------------------- /data/textures/hunter/hunter_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/hunter/hunter_walk.png -------------------------------------------------------------------------------- /data/textures/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/round.png -------------------------------------------------------------------------------- /data/textures/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/shadow.png -------------------------------------------------------------------------------- /data/textures/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/shell.png -------------------------------------------------------------------------------- /data/textures/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/smoke.png -------------------------------------------------------------------------------- /data/textures/smoke2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/smoke2.png -------------------------------------------------------------------------------- /data/textures/turret_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/turret_basic.png -------------------------------------------------------------------------------- /data/textures/turret_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/turret_v1.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-attack_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-attack_0.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-attack_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-attack_1.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-attack_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-attack_2.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-attack_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-attack_3.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-attack_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-attack_4.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-attack_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-attack_5.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-attack_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-attack_6.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-attack_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-attack_7.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-attack_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-attack_8.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_0.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_1.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_10.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_11.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_12.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_13.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_14.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_15.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_16.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_2.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_3.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_4.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_5.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_6.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_7.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_8.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-idle_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-idle_9.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_0.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_1.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_10.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_11.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_12.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_13.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_14.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_15.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_16.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_2.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_3.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_4.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_5.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_6.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_7.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_8.png -------------------------------------------------------------------------------- /data/textures/zombie/tds_zombie/export/skeleton-move_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/tds_zombie/export/skeleton-move_9.png -------------------------------------------------------------------------------- /data/textures/zombie/zombie_attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/zombie_attack.png -------------------------------------------------------------------------------- /data/textures/zombie/zombie_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/data/textures/zombie/zombie_move.png -------------------------------------------------------------------------------- /img/illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/img/illustration.png -------------------------------------------------------------------------------- /include/Blur/DynamicBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Blur/DynamicBlur.h -------------------------------------------------------------------------------- /include/Blur/blur.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Blur/blur.frag -------------------------------------------------------------------------------- /include/Bot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Bot.hpp -------------------------------------------------------------------------------- /include/Hunter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Hunter.hpp -------------------------------------------------------------------------------- /include/HunterBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/HunterBase.hpp -------------------------------------------------------------------------------- /include/LightEngine/LightEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/LightEngine/LightEngine.hpp -------------------------------------------------------------------------------- /include/LightEngine/LightUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/LightEngine/LightUtils.hpp -------------------------------------------------------------------------------- /include/LightEngine/ShadowCaster.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/LightEngine/ShadowCaster.hpp -------------------------------------------------------------------------------- /include/Props/BulletShell.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Props/BulletShell.hpp -------------------------------------------------------------------------------- /include/Props/Explosion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Props/Explosion.hpp -------------------------------------------------------------------------------- /include/Props/ExplosionProvider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Props/ExplosionProvider.hpp -------------------------------------------------------------------------------- /include/Props/Fire.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Props/Fire.hpp -------------------------------------------------------------------------------- /include/Props/Guts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Props/Guts.hpp -------------------------------------------------------------------------------- /include/Props/Props.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Props/Props.hpp -------------------------------------------------------------------------------- /include/Props/Smoke.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Props/Smoke.hpp -------------------------------------------------------------------------------- /include/Props/Wall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Props/Wall.hpp -------------------------------------------------------------------------------- /include/Props/WoodBox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Props/WoodBox.hpp -------------------------------------------------------------------------------- /include/System/Animation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/Animation.hpp -------------------------------------------------------------------------------- /include/System/AutoAim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/AutoAim.hpp -------------------------------------------------------------------------------- /include/System/ChainedObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/ChainedObject.hpp -------------------------------------------------------------------------------- /include/System/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/Config.hpp -------------------------------------------------------------------------------- /include/System/Cooldown.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/Cooldown.hpp -------------------------------------------------------------------------------- /include/System/EntityTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/EntityTypes.hpp -------------------------------------------------------------------------------- /include/System/EventManager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/EventManager.hpp -------------------------------------------------------------------------------- /include/System/GameRender.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/GameRender.hpp -------------------------------------------------------------------------------- /include/System/GameWorld.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/GameWorld.hpp -------------------------------------------------------------------------------- /include/System/GraphicsUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/GraphicsUtils.hpp -------------------------------------------------------------------------------- /include/System/Level.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/Level.hpp -------------------------------------------------------------------------------- /include/System/LifeForm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/LifeForm.hpp -------------------------------------------------------------------------------- /include/System/PoolObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/PoolObject.hpp -------------------------------------------------------------------------------- /include/System/SoundPlayer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/SoundPlayer.hpp -------------------------------------------------------------------------------- /include/System/StandardEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/StandardEntity.hpp -------------------------------------------------------------------------------- /include/System/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/Utils.hpp -------------------------------------------------------------------------------- /include/System/WorldEntity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/WorldEntity.hpp -------------------------------------------------------------------------------- /include/System/WorldEntityPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/System/WorldEntityPool.hpp -------------------------------------------------------------------------------- /include/Turret.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Turret.hpp -------------------------------------------------------------------------------- /include/UnitedEngine/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/UnitedEngine/Types.hpp -------------------------------------------------------------------------------- /include/UnitedEngine/U_2DBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/UnitedEngine/U_2DBody.h -------------------------------------------------------------------------------- /include/UnitedEngine/U_2DCollisionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/UnitedEngine/U_2DCollisionManager.h -------------------------------------------------------------------------------- /include/UnitedEngine/U_2DConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/UnitedEngine/U_2DConstraint.h -------------------------------------------------------------------------------- /include/UnitedEngine/UnitedEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/UnitedEngine/UnitedEngine.h -------------------------------------------------------------------------------- /include/UnitedEngine/Vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/UnitedEngine/Vec2.h -------------------------------------------------------------------------------- /include/Weapons/AK.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Weapons/AK.hpp -------------------------------------------------------------------------------- /include/Weapons/Bullet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Weapons/Bullet.hpp -------------------------------------------------------------------------------- /include/Weapons/Pistol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Weapons/Pistol.hpp -------------------------------------------------------------------------------- /include/Weapons/Shotgun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Weapons/Shotgun.hpp -------------------------------------------------------------------------------- /include/Weapons/Turrets/TurretBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Weapons/Turrets/TurretBase.hpp -------------------------------------------------------------------------------- /include/Weapons/Weapon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Weapons/Weapon.hpp -------------------------------------------------------------------------------- /include/Weapons/WeaponStatics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Weapons/WeaponStatics.hpp -------------------------------------------------------------------------------- /include/Weapons/Weapons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Weapons/Weapons.hpp -------------------------------------------------------------------------------- /include/Zombie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/include/Zombie.hpp -------------------------------------------------------------------------------- /src/Blur/DynamicBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Blur/DynamicBlur.cpp -------------------------------------------------------------------------------- /src/Blur/blur.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Blur/blur.frag -------------------------------------------------------------------------------- /src/Bot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Bot.cpp -------------------------------------------------------------------------------- /src/Hunter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Hunter.cpp -------------------------------------------------------------------------------- /src/HunterBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/HunterBase.cpp -------------------------------------------------------------------------------- /src/LightEngine/LightEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/LightEngine/LightEngine.cpp -------------------------------------------------------------------------------- /src/LightEngine/LightUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/LightEngine/LightUtils.cpp -------------------------------------------------------------------------------- /src/LightEngine/ShadowCaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/LightEngine/ShadowCaster.cpp -------------------------------------------------------------------------------- /src/Props/BulletShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Props/BulletShell.cpp -------------------------------------------------------------------------------- /src/Props/Explosion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Props/Explosion.cpp -------------------------------------------------------------------------------- /src/Props/ExplosionProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Props/ExplosionProvider.cpp -------------------------------------------------------------------------------- /src/Props/Fire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Props/Fire.cpp -------------------------------------------------------------------------------- /src/Props/Guts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Props/Guts.cpp -------------------------------------------------------------------------------- /src/Props/Smoke.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Props/Smoke.cpp -------------------------------------------------------------------------------- /src/Props/Wall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Props/Wall.cpp -------------------------------------------------------------------------------- /src/System/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/Animation.cpp -------------------------------------------------------------------------------- /src/System/AutoAim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/AutoAim.cpp -------------------------------------------------------------------------------- /src/System/Cooldown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/Cooldown.cpp -------------------------------------------------------------------------------- /src/System/EventManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/EventManager.cpp -------------------------------------------------------------------------------- /src/System/GameRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/GameRender.cpp -------------------------------------------------------------------------------- /src/System/GameWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/GameWorld.cpp -------------------------------------------------------------------------------- /src/System/GraphicsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/GraphicsUtils.cpp -------------------------------------------------------------------------------- /src/System/Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/Level.cpp -------------------------------------------------------------------------------- /src/System/LifeForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/LifeForm.cpp -------------------------------------------------------------------------------- /src/System/SoundPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/SoundPlayer.cpp -------------------------------------------------------------------------------- /src/System/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/Utils.cpp -------------------------------------------------------------------------------- /src/System/WorldEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/System/WorldEntity.cpp -------------------------------------------------------------------------------- /src/Turret.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Turret.cpp -------------------------------------------------------------------------------- /src/UnitedEngine/U_2DBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/UnitedEngine/U_2DBody.cpp -------------------------------------------------------------------------------- /src/UnitedEngine/U_2DCollisionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/UnitedEngine/U_2DCollisionManager.cpp -------------------------------------------------------------------------------- /src/UnitedEngine/U_2DConstraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/UnitedEngine/U_2DConstraint.cpp -------------------------------------------------------------------------------- /src/UnitedEngine/Vec2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/UnitedEngine/Vec2.cpp -------------------------------------------------------------------------------- /src/Weapons/AK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Weapons/AK.cpp -------------------------------------------------------------------------------- /src/Weapons/Bullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Weapons/Bullet.cpp -------------------------------------------------------------------------------- /src/Weapons/Pistol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Weapons/Pistol.cpp -------------------------------------------------------------------------------- /src/Weapons/Shotgun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Weapons/Shotgun.cpp -------------------------------------------------------------------------------- /src/Weapons/Weapon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Weapons/Weapon.cpp -------------------------------------------------------------------------------- /src/Zombie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/Zombie.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnBuffer/ZombieV/HEAD/src/main.cpp --------------------------------------------------------------------------------