├── .cargo └── config.toml ├── .clang-format ├── .clang-tidy ├── .clangd ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── clang-sanitizer.yml │ ├── clang-tidy.yml │ ├── codeql-analysis.yml │ ├── rust.yml │ └── style.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── build.yml ├── .gitmodules ├── .mailmap ├── .pylintrc ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── Doxyfile ├── README.md ├── cmake ├── BuildVulkanShaders.cmake ├── CheckAtomic.cmake ├── Download_GTest_CMakeLists.txt.in ├── FindAndroid.cmake ├── FindCrashdump.cmake ├── FindCrypto.cmake ├── FindCurl.cmake ├── FindDiscordSdk.cmake ├── FindFFMPEG.cmake ├── FindFreetype.cmake ├── FindGLEW.cmake ├── FindMiniupnpc.cmake ├── FindMySQL.cmake ├── FindNotify.cmake ├── FindOgg.cmake ├── FindOpus.cmake ├── FindOpusfile.cmake ├── FindPNG.cmake ├── FindRust.cmake ├── FindSDL2.cmake ├── FindSQLite3.cmake ├── FindSSP.cmake ├── FindVulkan.cmake ├── FindWavpack.cmake ├── FindWebsockets.cmake ├── FindZLIB.cmake ├── checksummed_extra.txt └── toolchains │ ├── Emscripten.toolchain │ ├── darwin-arm64.toolchain │ ├── darwin-x86_64.toolchain │ ├── mingw32.toolchain │ ├── mingw64-aarch64-llvm.toolchain │ └── mingw64.toolchain ├── codecov.yml ├── data ├── announcement.txt ├── arrow.png ├── assets │ ├── entities │ │ ├── comfort │ │ │ └── ddnet.png │ │ └── license.txt │ └── game │ │ └── game_06.png ├── audio │ ├── foley_body_impact-01.wv │ ├── foley_body_impact-02.wv │ ├── foley_body_impact-03.wv │ ├── foley_body_splat-01.wv │ ├── foley_body_splat-02.wv │ ├── foley_body_splat-03.wv │ ├── foley_body_splat-04.wv │ ├── foley_dbljump-01.wv │ ├── foley_dbljump-02.wv │ ├── foley_dbljump-03.wv │ ├── foley_foot_left-01.wv │ ├── foley_foot_left-02.wv │ ├── foley_foot_left-03.wv │ ├── foley_foot_left-04.wv │ ├── foley_foot_right-01.wv │ ├── foley_foot_right-02.wv │ ├── foley_foot_right-03.wv │ ├── foley_foot_right-04.wv │ ├── foley_land-01.wv │ ├── foley_land-02.wv │ ├── foley_land-03.wv │ ├── foley_land-04.wv │ ├── hook_attach-01.wv │ ├── hook_attach-02.wv │ ├── hook_attach-03.wv │ ├── hook_loop-01.wv │ ├── hook_loop-02.wv │ ├── hook_noattach-01.wv │ ├── hook_noattach-02.wv │ ├── hook_noattach-03.wv │ ├── music_menu.wv │ ├── sfx_ctf_cap_pl.wv │ ├── sfx_ctf_drop.wv │ ├── sfx_ctf_grab_en.wv │ ├── sfx_ctf_grab_pl.wv │ ├── sfx_ctf_rtn.wv │ ├── sfx_hit_strong-01.wv │ ├── sfx_hit_strong-02.wv │ ├── sfx_hit_weak-01.wv │ ├── sfx_hit_weak-02.wv │ ├── sfx_hit_weak-03.wv │ ├── sfx_msg-client.wv │ ├── sfx_msg-highlight.wv │ ├── sfx_msg-server.wv │ ├── sfx_pickup_arm-01.wv │ ├── sfx_pickup_arm-02.wv │ ├── sfx_pickup_arm-03.wv │ ├── sfx_pickup_arm-04.wv │ ├── sfx_pickup_gun.wv │ ├── sfx_pickup_hrt-01.wv │ ├── sfx_pickup_hrt-02.wv │ ├── sfx_pickup_launcher.wv │ ├── sfx_pickup_ninja.wv │ ├── sfx_pickup_sg.wv │ ├── sfx_skid-01.wv │ ├── sfx_skid-02.wv │ ├── sfx_skid-03.wv │ ├── sfx_skid-04.wv │ ├── sfx_spawn_wpn-01.wv │ ├── sfx_spawn_wpn-02.wv │ ├── sfx_spawn_wpn-03.wv │ ├── vo_teefault_cry-01.wv │ ├── vo_teefault_cry-02.wv │ ├── vo_teefault_ninja-01.wv │ ├── vo_teefault_ninja-02.wv │ ├── vo_teefault_ninja-03.wv │ ├── vo_teefault_ninja-04.wv │ ├── vo_teefault_pain_long-01.wv │ ├── vo_teefault_pain_long-02.wv │ ├── vo_teefault_pain_short-01.wv │ ├── vo_teefault_pain_short-02.wv │ ├── vo_teefault_pain_short-03.wv │ ├── vo_teefault_pain_short-04.wv │ ├── vo_teefault_pain_short-05.wv │ ├── vo_teefault_pain_short-06.wv │ ├── vo_teefault_pain_short-07.wv │ ├── vo_teefault_pain_short-08.wv │ ├── vo_teefault_pain_short-09.wv │ ├── vo_teefault_pain_short-10.wv │ ├── vo_teefault_pain_short-11.wv │ ├── vo_teefault_pain_short-12.wv │ ├── vo_teefault_sledge-01.wv │ ├── vo_teefault_sledge-02.wv │ ├── vo_teefault_sledge-03.wv │ ├── vo_teefault_spawn-01.wv │ ├── vo_teefault_spawn-02.wv │ ├── vo_teefault_spawn-03.wv │ ├── vo_teefault_spawn-04.wv │ ├── vo_teefault_spawn-05.wv │ ├── vo_teefault_spawn-06.wv │ ├── vo_teefault_spawn-07.wv │ ├── wp_flump_explo-01.wv │ ├── wp_flump_explo-02.wv │ ├── wp_flump_explo-03.wv │ ├── wp_flump_launch-01.wv │ ├── wp_flump_launch-02.wv │ ├── wp_flump_launch-03.wv │ ├── wp_gun_fire-01.wv │ ├── wp_gun_fire-02.wv │ ├── wp_gun_fire-03.wv │ ├── wp_hammer_hit-01.wv │ ├── wp_hammer_hit-02.wv │ ├── wp_hammer_hit-03.wv │ ├── wp_hammer_swing-01.wv │ ├── wp_hammer_swing-02.wv │ ├── wp_hammer_swing-03.wv │ ├── wp_laser_bnce-01.wv │ ├── wp_laser_bnce-02.wv │ ├── wp_laser_bnce-03.wv │ ├── wp_laser_fire-01.wv │ ├── wp_laser_fire-02.wv │ ├── wp_laser_fire-03.wv │ ├── wp_ninja_attack-01.wv │ ├── wp_ninja_attack-02.wv │ ├── wp_ninja_attack-03.wv │ ├── wp_ninja_attack-04.wv │ ├── wp_ninja_hit-01.wv │ ├── wp_ninja_hit-02.wv │ ├── wp_ninja_hit-03.wv │ ├── wp_ninja_hit-04.wv │ ├── wp_noammo-01.wv │ ├── wp_noammo-02.wv │ ├── wp_noammo-03.wv │ ├── wp_noammo-04.wv │ ├── wp_noammo-05.wv │ ├── wp_shotty_fire-01.wv │ ├── wp_shotty_fire-02.wv │ ├── wp_shotty_fire-03.wv │ ├── wp_switch-01.wv │ ├── wp_switch-02.wv │ └── wp_switch-03.wv ├── autoexec_server.cfg ├── background_noise.png ├── blob.png ├── censorlist.txt ├── communityicons │ └── none.png ├── countryflags │ ├── AD.png │ ├── AE.png │ ├── AF.png │ ├── AG.png │ ├── AI.png │ ├── AL.png │ ├── AM.png │ ├── AO.png │ ├── AQ.png │ ├── AR.png │ ├── AS.png │ ├── AT.png │ ├── AU.png │ ├── AW.png │ ├── AX.png │ ├── AZ.png │ ├── BA.png │ ├── BB.png │ ├── BD.png │ ├── BE.png │ ├── BF.png │ ├── BG.png │ ├── BH.png │ ├── BI.png │ ├── BJ.png │ ├── BL.png │ ├── BM.png │ ├── BN.png │ ├── BO.png │ ├── BR.png │ ├── BS.png │ ├── BT.png │ ├── BW.png │ ├── BY.png │ ├── BZ.png │ ├── CA.png │ ├── CC.png │ ├── CD.png │ ├── CF.png │ ├── CG.png │ ├── CH.png │ ├── CI.png │ ├── CK.png │ ├── CL.png │ ├── CM.png │ ├── CN.png │ ├── CO.png │ ├── CR.png │ ├── CU.png │ ├── CV.png │ ├── CW.png │ ├── CX.png │ ├── CY.png │ ├── CZ.png │ ├── DE.png │ ├── DJ.png │ ├── DK.png │ ├── DM.png │ ├── DO.png │ ├── DZ.png │ ├── EC.png │ ├── EE.png │ ├── EG.png │ ├── EH.png │ ├── ER.png │ ├── ES-CT.png │ ├── ES-GA.png │ ├── ES.png │ ├── ET.png │ ├── EU.png │ ├── FI.png │ ├── FJ.png │ ├── FK.png │ ├── FM.png │ ├── FO.png │ ├── FR.png │ ├── GA.png │ ├── GB-ENG.png │ ├── GB-NIR.png │ ├── GB-SCT.png │ ├── GB-WLS.png │ ├── GB.png │ ├── GD.png │ ├── GE.png │ ├── GF.png │ ├── GG.png │ ├── GH.png │ ├── GI.png │ ├── GL.png │ ├── GM.png │ ├── GN.png │ ├── GP.png │ ├── GQ.png │ ├── GR.png │ ├── GS.png │ ├── GT.png │ ├── GU.png │ ├── GW.png │ ├── GY.png │ ├── HK.png │ ├── HN.png │ ├── HR.png │ ├── HT.png │ ├── HU.png │ ├── ID.png │ ├── IE.png │ ├── IL.png │ ├── IM.png │ ├── IN.png │ ├── IO.png │ ├── IQ.png │ ├── IR.png │ ├── IS.png │ ├── IT.png │ ├── JE.png │ ├── JM.png │ ├── JO.png │ ├── JP.png │ ├── KE.png │ ├── KG.png │ ├── KH.png │ ├── KI.png │ ├── KM.png │ ├── KN.png │ ├── KP.png │ ├── KR.png │ ├── KW.png │ ├── KY.png │ ├── KZ.png │ ├── LA.png │ ├── LB.png │ ├── LC.png │ ├── LI.png │ ├── LK.png │ ├── LR.png │ ├── LS.png │ ├── LT.png │ ├── LU.png │ ├── LV.png │ ├── LY.png │ ├── MA.png │ ├── MC.png │ ├── MD.png │ ├── ME.png │ ├── MF.png │ ├── MG.png │ ├── MH.png │ ├── MK.png │ ├── ML.png │ ├── MM.png │ ├── MN.png │ ├── MO.png │ ├── MP.png │ ├── MQ.png │ ├── MR.png │ ├── MS.png │ ├── MT.png │ ├── MU.png │ ├── MV.png │ ├── MW.png │ ├── MX.png │ ├── MY.png │ ├── MZ.png │ ├── NA.png │ ├── NC.png │ ├── NE.png │ ├── NF.png │ ├── NG.png │ ├── NI.png │ ├── NL.png │ ├── NO.png │ ├── NP.png │ ├── NR.png │ ├── NU.png │ ├── NZ.png │ ├── OM.png │ ├── PA.png │ ├── PE.png │ ├── PF.png │ ├── PG.png │ ├── PH.png │ ├── PK.png │ ├── PL.png │ ├── PM.png │ ├── PN.png │ ├── PR.png │ ├── PS.png │ ├── PT.png │ ├── PW.png │ ├── PY.png │ ├── QA.png │ ├── RE.png │ ├── RO.png │ ├── RS.png │ ├── RU.png │ ├── RW.png │ ├── SA.png │ ├── SB.png │ ├── SC.png │ ├── SD.png │ ├── SE.png │ ├── SG.png │ ├── SH.png │ ├── SI.png │ ├── SK.png │ ├── SL.png │ ├── SM.png │ ├── SN.png │ ├── SO.png │ ├── SR.png │ ├── SS.png │ ├── ST.png │ ├── SV.png │ ├── SX.png │ ├── SY.png │ ├── SZ.png │ ├── TC.png │ ├── TD.png │ ├── TF.png │ ├── TG.png │ ├── TH.png │ ├── TJ.png │ ├── TK.png │ ├── TL.png │ ├── TM.png │ ├── TN.png │ ├── TO.png │ ├── TR.png │ ├── TT.png │ ├── TV.png │ ├── TW.png │ ├── TZ.png │ ├── UA.png │ ├── UG.png │ ├── US.png │ ├── UY.png │ ├── UZ.png │ ├── VA.png │ ├── VC.png │ ├── VE.png │ ├── VG.png │ ├── VI.png │ ├── VN.png │ ├── VU.png │ ├── WF.png │ ├── WS.png │ ├── YE.png │ ├── ZA.png │ ├── ZM.png │ ├── ZW.png │ ├── default.png │ └── index.txt ├── deadtee.png ├── debug_font.png ├── editor │ ├── audio_source.png │ ├── automap │ │ ├── basic_freeze.rules │ │ ├── ddmax_freeze.rules │ │ ├── ddnet_grass.rules │ │ ├── ddnet_tiles.rules │ │ ├── ddnet_walls.rules │ │ ├── desert_main.rules │ │ ├── fadeout.rules │ │ ├── generic_clear.rules │ │ ├── generic_unhookable.rules │ │ ├── generic_unhookable_0.7.rules │ │ ├── grass_main.rules │ │ ├── jungle_main.rules │ │ ├── jungle_midground.rules │ │ ├── round_tiles.rules │ │ ├── water.rules │ │ └── winter_main.rules │ ├── checker.png │ ├── cursor.png │ ├── cursor_resize.png │ ├── entities │ │ ├── DDNet.png │ │ ├── F-DDrace.png │ │ ├── FNG.png │ │ ├── Race.png │ │ ├── Vanilla.png │ │ └── blockworlds.png │ ├── entities_clear │ │ ├── blockworlds.png │ │ ├── ddnet.png │ │ ├── ddrace.png │ │ ├── f-ddrace.png │ │ ├── fng.png │ │ ├── race.png │ │ └── vanilla.png │ ├── front.png │ ├── speed_arrow.png │ ├── speed_arrow_array.png │ ├── speedup.png │ ├── switch.png │ ├── tele.png │ └── tune.png ├── emoticons.png ├── entity │ ├── binds │ │ ├── .extra.cfg │ │ └── .help.cfg │ ├── fonts │ │ ├── Cabin-Regular.ttf │ │ ├── ComicSansMS.ttf │ │ ├── GoogleSans-Regular.ttf │ │ ├── Inter_24pt-Regular.ttf │ │ ├── Inter_24pt-SemiBold.ttf │ │ ├── Minecraft_font.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Nunito-Black.ttf │ │ └── Rubik-Regular.ttf │ └── icons │ │ ├── entity_flag.png │ │ ├── muted_icon.png │ │ └── settings_icon.png ├── extras.png ├── fonts │ ├── DejaVuSans.ttf │ ├── Font_Awesome_6_Free-Solid-900.otf │ ├── GlowSansJ-Compressed-Book.otf │ ├── SourceHanSans.ttc │ └── index.json ├── game.png ├── gui_buttons.png ├── gui_cursor.png ├── gui_icons.png ├── gui_logo.png ├── hud.png ├── languages │ ├── arabic.txt │ ├── azerbaijani.txt │ ├── belarusian.txt │ ├── bosnian.txt │ ├── brazilian_portuguese.txt │ ├── bulgarian.txt │ ├── catalan.txt │ ├── chuvash.txt │ ├── czech.txt │ ├── danish.txt │ ├── dutch.txt │ ├── esperanto.txt │ ├── estonian.txt │ ├── finnish.txt │ ├── french.txt │ ├── galician.txt │ ├── german.txt │ ├── greek.txt │ ├── hungarian.txt │ ├── index.txt │ ├── italian.txt │ ├── japanese.txt │ ├── korean.txt │ ├── kyrgyz.txt │ ├── license.txt │ ├── norwegian.txt │ ├── persian.txt │ ├── polish.txt │ ├── portuguese.txt │ ├── romanian.txt │ ├── russian.txt │ ├── serbian.txt │ ├── serbian_cyrillic.txt │ ├── simplified_chinese.txt │ ├── slovak.txt │ ├── spanish.txt │ ├── swedish.txt │ ├── traditional_chinese.txt │ ├── turkish.txt │ └── ukrainian.txt ├── mapres │ ├── basic_freeze.png │ ├── bg_cloud1.png │ ├── bg_cloud2.png │ ├── bg_cloud3.png │ ├── ddmax_freeze.png │ ├── ddnet_grass.png │ ├── ddnet_start.png │ ├── ddnet_tiles.png │ ├── ddnet_walls.png │ ├── desert_background.png │ ├── desert_doodads.png │ ├── desert_main.png │ ├── desert_mountains.png │ ├── desert_mountains2.png │ ├── desert_mountains_new_background.png │ ├── desert_mountains_new_foreground.png │ ├── desert_sun.png │ ├── entities.png │ ├── fadeout.png │ ├── font_teeworlds.png │ ├── font_teeworlds_alt.png │ ├── generic_clear.png │ ├── generic_deathtiles.png │ ├── generic_lamps.png │ ├── generic_shadows_0.7.png │ ├── generic_unhookable.png │ ├── generic_unhookable_0.7.png │ ├── grass_doodads.png │ ├── grass_doodads_0.7.png │ ├── grass_main.png │ ├── grass_main_0.7.png │ ├── jungle_background.png │ ├── jungle_deathtiles.png │ ├── jungle_doodads.png │ ├── jungle_main.png │ ├── jungle_midground.png │ ├── jungle_unhookables.png │ ├── light.png │ ├── mixed_tiles.png │ ├── moon.png │ ├── mountains.png │ ├── round_tiles.png │ ├── snow.png │ ├── snow_mountain.png │ ├── stars.png │ ├── sun.png │ ├── water.png │ ├── winter_doodads.png │ ├── winter_main.png │ ├── winter_main_0.7.png │ ├── winter_mountains.png │ ├── winter_mountains2.png │ └── winter_mountains3.png ├── maps │ ├── Gold Mine.map │ ├── LearnToPlay.map │ ├── Sunny Side Up.map │ ├── Tsunami.map │ ├── Tutorial.map │ ├── coverage.map │ ├── ctf1.map │ ├── ctf2.map │ ├── ctf3.map │ ├── ctf4.map │ ├── ctf5.map │ ├── ctf6.map │ ├── ctf7.map │ ├── dm1.map │ ├── dm2.map │ ├── dm6.map │ ├── dm7.map │ ├── dm8.map │ ├── dm9.map │ └── license.txt ├── maps7 │ ├── Gold Mine.map │ ├── LearnToPlay.map │ ├── Sunny Side Up.map │ ├── Tsunami.map │ ├── Tutorial.map │ └── readme.txt ├── menuimages │ ├── demos.png │ ├── editor.png │ ├── local_server.png │ ├── play_game.png │ └── settings.png ├── particles.png ├── race_flag.png ├── shader │ ├── pipeline.frag │ ├── pipeline.vert │ ├── prim.frag │ ├── prim.vert │ ├── primex.frag │ ├── primex.vert │ ├── quad.frag │ ├── quad.vert │ ├── spritemulti.frag │ ├── spritemulti.vert │ ├── text.frag │ ├── text.vert │ ├── tile.frag │ ├── tile.vert │ ├── tile_border.frag │ ├── tile_border.vert │ └── vulkan │ │ ├── prim.frag │ │ ├── prim.vert │ │ ├── prim3d.frag │ │ ├── prim3d.vert │ │ ├── primex.frag │ │ ├── primex.vert │ │ ├── quad.frag │ │ ├── quad.vert │ │ ├── quadbo.vertfrag │ │ ├── spritemulti.frag │ │ ├── spritemulti.vert │ │ ├── text.frag │ │ ├── text.vert │ │ ├── tile.frag │ │ ├── tile.vert │ │ ├── tile_border.frag │ │ └── tile_border.vert ├── skins │ ├── PaladiN.png │ ├── antiantey.png │ ├── beast.png │ ├── blacktee.png │ ├── bluekitty.png │ ├── bluestripe.png │ ├── bomb.png │ ├── brownbear.png │ ├── cammo.png │ ├── cammostripes.png │ ├── catnoa.png │ ├── chinese_by_whis.png │ ├── coala.png │ ├── coala_bluekitty.png │ ├── coala_bluestripe.png │ ├── coala_cammo.png │ ├── coala_cammostripes.png │ ├── coala_default.png │ ├── coala_limekitty.png │ ├── coala_pinky.png │ ├── coala_redbopp.png │ ├── coala_redstripe.png │ ├── coala_saddo.png │ ├── coala_toptri.png │ ├── coala_twinbop.png │ ├── coala_twintri.png │ ├── coala_warpaint.png │ ├── coala_x_ninja.png │ ├── default.png │ ├── demonlimekitty.png │ ├── dino.png │ ├── dragon.png │ ├── evil.png │ ├── evilwolfe.png │ ├── ghost.png │ ├── ghostjtj.png │ ├── giraffe.png │ ├── greensward.png │ ├── greyfox.png │ ├── greyfox_2.png │ ├── hammie-chew.png │ ├── hammie-whis.png │ ├── jeet.png │ ├── kintaro_2.png │ ├── kitty_bluestripe.png │ ├── kitty_brownbear.png │ ├── kitty_cammo.png │ ├── kitty_cammostripes.png │ ├── kitty_coala.png │ ├── kitty_default.png │ ├── kitty_pinky.png │ ├── kitty_redbopp.png │ ├── kitty_redstripe.png │ ├── kitty_saddo.png │ ├── kitty_toptri.png │ ├── kitty_twinbop.png │ ├── kitty_twintri.png │ ├── kitty_warpaint.png │ ├── kitty_x_ninja.png │ ├── license.txt │ ├── limekitty.png │ ├── mermydon-coala.png │ ├── mermydon.png │ ├── mouse.png │ ├── musmann.png │ ├── nanami.png │ ├── nanas.png │ ├── nersif.png │ ├── oldman.png │ ├── oldschool.png │ ├── penguin.png │ ├── pinky.png │ ├── random.png │ ├── redbopp.png │ ├── redstripe.png │ ├── saddo.png │ ├── santa_bluekitty.png │ ├── santa_bluestripe.png │ ├── santa_brownbear.png │ ├── santa_cammo.png │ ├── santa_cammostripes.png │ ├── santa_coala.png │ ├── santa_default.png │ ├── santa_limekitty.png │ ├── santa_pinky.png │ ├── santa_redbopp.png │ ├── santa_redstripe.png │ ├── santa_saddo.png │ ├── santa_toptri.png │ ├── santa_twinbop.png │ ├── santa_twintri.png │ ├── santa_warpaint.png │ ├── teerasta.png │ ├── toptri.png │ ├── twinbop.png │ ├── twintri.png │ ├── veteran.png │ ├── voodoo_tee.png │ ├── warpaint.png │ ├── wartee.png │ ├── whis.png │ ├── x_ninja.png │ └── x_spec.png ├── skins7 │ ├── beaver.json │ ├── bluekitty.json │ ├── bluestripe.json │ ├── body │ │ ├── bat.png │ │ ├── bear.png │ │ ├── beaver.png │ │ ├── dog.png │ │ ├── force.png │ │ ├── fox.png │ │ ├── greensward.png │ │ ├── hippo.png │ │ ├── kitty.png │ │ ├── koala.png │ │ ├── monkey.png │ │ ├── mouse.png │ │ ├── piglet.png │ │ ├── raccoon.png │ │ ├── spiky.png │ │ ├── standard.png │ │ └── x_ninja.png │ ├── bot.png │ ├── brownbear.json │ ├── bumbler.json │ ├── cammo.json │ ├── cammostripes.json │ ├── cavebat.json │ ├── decoration │ │ ├── hair.png │ │ ├── twinbopp.png │ │ ├── twinmello.png │ │ ├── twinpen.png │ │ ├── unibop.png │ │ ├── unimelo.png │ │ └── unipento.png │ ├── default.json │ ├── eyes │ │ ├── colorable.png │ │ ├── negative.png │ │ ├── standard.png │ │ ├── standardreal.png │ │ └── x_ninja.png │ ├── feet │ │ └── standard.png │ ├── force.json │ ├── fox.json │ ├── greensward.json │ ├── greycoon.json │ ├── greyfox.json │ ├── hands │ │ └── standard.png │ ├── hippo.json │ ├── koala.json │ ├── limedog.json │ ├── limekitty.json │ ├── marking │ │ ├── bear.png │ │ ├── belly1.png │ │ ├── belly2.png │ │ ├── blush.png │ │ ├── bug.png │ │ ├── cammo1.png │ │ ├── cammo2.png │ │ ├── cammostripes.png │ │ ├── coonfluff.png │ │ ├── donny.png │ │ ├── downdony.png │ │ ├── duodonny.png │ │ ├── fox.png │ │ ├── hipbel.png │ │ ├── lowcross.png │ │ ├── lowpaint.png │ │ ├── marksman.png │ │ ├── mice.png │ │ ├── mixture1.png │ │ ├── mixture2.png │ │ ├── monkey.png │ │ ├── panda1.png │ │ ├── panda2.png │ │ ├── purelove.png │ │ ├── saddo.png │ │ ├── setisu.png │ │ ├── sidemarks.png │ │ ├── singu.png │ │ ├── stripe.png │ │ ├── striped.png │ │ ├── stripes.png │ │ ├── stripes2.png │ │ ├── thunder.png │ │ ├── tiger1.png │ │ ├── tiger2.png │ │ ├── toptri.png │ │ ├── triangular.png │ │ ├── tricircular.png │ │ ├── tripledon.png │ │ ├── tritri.png │ │ ├── twinbelly.png │ │ ├── twincross.png │ │ ├── twintri.png │ │ ├── uppy.png │ │ ├── warpaint.png │ │ ├── warstripes.png │ │ ├── whisker.png │ │ ├── wildpaint.png │ │ ├── wildpatch.png │ │ └── yinyang.png │ ├── monkey.json │ ├── paintgre.json │ ├── pandabear.json │ ├── panther.json │ ├── pento.json │ ├── piggy.json │ ├── pinky.json │ ├── raccoon.json │ ├── redbopp.json │ ├── redstripe.json │ ├── saddo.json │ ├── setisu.json │ ├── snowti.json │ ├── spiky.json │ ├── swardy.json │ ├── tiger.json │ ├── tooxy.json │ ├── toptri.json │ ├── twinbop.json │ ├── twintri.json │ ├── warmouse.json │ ├── warpaint.json │ ├── x_ninja.json │ └── xmas_hat.png ├── strong_weak.png ├── themes │ ├── auto.png │ ├── autumn.png │ ├── autumn_day.map │ ├── autumn_night.map │ ├── heavens.png │ ├── heavens_day.map │ ├── heavens_night.map │ ├── jungle.png │ ├── jungle_day.map │ ├── jungle_night.map │ ├── newyear.map │ ├── newyear.png │ ├── none.png │ ├── rand.png │ ├── winter.png │ ├── winter_day.map │ └── winter_night.map ├── touch_controls.json └── wordlist.txt ├── datasrc ├── compile.py ├── content.py ├── crosscompile.py ├── datatypes.py ├── network.py └── seven │ ├── compile.py │ ├── content.py │ ├── datatypes.py │ └── network.py ├── deny.toml ├── formatting-revs.txt ├── license.txt ├── lsan.supp ├── man ├── DDNet-Server.6 ├── DDNet.6 ├── DDNet.adoc ├── DDNetServer.adoc └── generate.sh ├── memcheck.supp ├── other ├── bundle │ ├── client │ │ ├── Info.plist.in │ │ └── PkgInfo │ └── server │ │ ├── Info.plist.in │ │ └── PkgInfo ├── config_directory.bat ├── config_directory.sh ├── ddnet.desktop ├── dmgbackground.png ├── dmgsettings.py ├── emscripten │ ├── minimal.html │ └── server.py ├── icons │ ├── DDNet-Server.icns │ ├── DDNet-Server.ico │ ├── DDNet-Server.rc │ ├── DDNet-Server_16x16x32.png │ ├── DDNet-Server_256x256x32.png │ ├── DDNet-Server_32x32x32.png │ ├── DDNet-Server_48x48x32.png │ ├── DDNet.aps │ ├── DDNet.icns │ ├── DDNet.ico │ ├── DDNet.rc │ ├── DDNet_16x16x32.png │ ├── DDNet_256x256x32.png │ ├── DDNet_32x32x32.png │ ├── DDNet_48x48x32.png │ └── license.txt ├── manifest │ ├── client.manifest.in │ └── client.rc ├── versioninfo │ └── versioninfo.rc.in ├── vim │ ├── ftdetect │ │ └── ddnet-cfg.vim │ └── syntax │ │ └── ddnet-cfg.vim └── vscode │ ├── README.md │ ├── ddnet-cmake-tools-kits.json │ ├── ddnet.code-workspace │ └── lldbinit.py ├── scripts ├── SDL_scancode.h ├── android │ ├── README.md │ ├── cmake_android.sh │ └── files │ │ ├── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── build.sh │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── java │ │ └── org │ │ │ └── ddnet │ │ │ └── client │ │ │ ├── ClientActivity.java │ │ │ └── ServerService.java │ │ ├── proguard-rules.pro │ │ ├── res │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ ├── values-sv-rSE │ │ │ └── strings.xml │ │ ├── values-tr-rTR │ │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ ├── values │ │ │ └── strings.xml │ │ └── xml │ │ │ └── shortcuts.xml │ │ └── settings.gradle ├── check_config_variables.py ├── check_dilate.py ├── check_header_guards.py ├── check_identifiers.py ├── check_standard_headers.sh ├── check_unused_header_files.py ├── checksum.py ├── compile_libs │ ├── cmake_lib_compile.sh │ ├── gen_libs.sh │ ├── make_lib_openssl.sh │ ├── make_lib_opusfile.sh │ └── make_lib_sqlite3.sh ├── darwin_strip_rpath.py ├── export_settings_commands_table.py ├── extract_identifiers.py ├── fix_style.py ├── gen_keys.py ├── generate_fake_curl.py ├── generate_unicode_confusables_data.py ├── generate_unicode_tolower.py ├── git_revision.py ├── hash_passwords.py ├── import_file_score.py ├── integration_test.py ├── languages │ ├── README.md │ ├── analyze.py │ ├── copy_fix.py │ ├── find_unchanged.py │ ├── twlang.py │ ├── update_all.py │ └── validate.py ├── move_sqlite.py ├── parse_drmingw.sh ├── send_named_pipe.ps1 ├── tw_api.py ├── unicode.py └── wordlist.py ├── src ├── android │ ├── android_main.cpp │ └── android_main.h ├── antibot │ ├── antibot_data.h │ ├── antibot_interface.h │ └── antibot_null.cpp ├── base │ ├── .clang-tidy │ ├── Cargo.toml │ ├── bezier.cpp │ ├── bezier.h │ ├── color.cpp │ ├── color.h │ ├── color.rs │ ├── crashdump.cpp │ ├── detect.h │ ├── dynamic.h │ ├── hash.cpp │ ├── hash.h │ ├── hash_bundled.cpp │ ├── hash_ctxt.h │ ├── hash_libtomcrypt.cpp │ ├── hash_openssl.cpp │ ├── lib.rs │ ├── lock.h │ ├── log.cpp │ ├── log.h │ ├── logger.h │ ├── math.h │ ├── rust.h │ ├── rust.rs │ ├── system.cpp │ ├── system.h │ ├── tl │ │ └── threading.h │ ├── types.h │ ├── unicode │ │ ├── VERSION.txt │ │ ├── confusables.cpp │ │ ├── confusables.h │ │ ├── confusables_data.h │ │ ├── tolower.cpp │ │ ├── tolower.h │ │ └── tolower_data.h │ └── vmath.h ├── engine │ ├── Cargo.toml │ ├── antibot.h │ ├── client.h │ ├── client │ │ ├── backend │ │ │ ├── backend_base.cpp │ │ │ ├── backend_base.h │ │ │ ├── glsl_shader_compiler.cpp │ │ │ ├── glsl_shader_compiler.h │ │ │ ├── null │ │ │ │ ├── backend_null.cpp │ │ │ │ └── backend_null.h │ │ │ ├── opengl │ │ │ │ ├── backend_opengl.cpp │ │ │ │ ├── backend_opengl.h │ │ │ │ ├── backend_opengl3.cpp │ │ │ │ ├── backend_opengl3.h │ │ │ │ ├── opengl_sl.cpp │ │ │ │ ├── opengl_sl.h │ │ │ │ ├── opengl_sl_program.cpp │ │ │ │ └── opengl_sl_program.h │ │ │ ├── opengles │ │ │ │ ├── backend_opengles.cpp │ │ │ │ ├── backend_opengles3.cpp │ │ │ │ ├── backend_opengles3.h │ │ │ │ ├── gles_class_defines.h │ │ │ │ ├── opengles_sl.cpp │ │ │ │ └── opengles_sl_program.cpp │ │ │ └── vulkan │ │ │ │ ├── backend_vulkan.cpp │ │ │ │ └── backend_vulkan.h │ │ ├── backend_sdl.cpp │ │ ├── backend_sdl.h │ │ ├── blocklist_driver.cpp │ │ ├── blocklist_driver.h │ │ ├── checksum.h │ │ ├── client.cpp │ │ ├── client.h │ │ ├── demoedit.cpp │ │ ├── demoedit.h │ │ ├── discord.cpp │ │ ├── enums.h │ │ ├── favorites.cpp │ │ ├── friends.cpp │ │ ├── friends.h │ │ ├── ghost.cpp │ │ ├── ghost.h │ │ ├── graph.cpp │ │ ├── graph.h │ │ ├── graphics_defines.h │ │ ├── graphics_threaded.cpp │ │ ├── graphics_threaded.h │ │ ├── input.cpp │ │ ├── input.h │ │ ├── keynames.cpp │ │ ├── keynames.h │ │ ├── notifications.cpp │ │ ├── notifications.h │ │ ├── serverbrowser.cpp │ │ ├── serverbrowser.h │ │ ├── serverbrowser_http.cpp │ │ ├── serverbrowser_http.h │ │ ├── serverbrowser_ping_cache.cpp │ │ ├── serverbrowser_ping_cache.h │ │ ├── sixup_translate_system.cpp │ │ ├── smooth_time.cpp │ │ ├── smooth_time.h │ │ ├── sound.cpp │ │ ├── sound.h │ │ ├── sqlite.cpp │ │ ├── steam.cpp │ │ ├── text.cpp │ │ ├── updater.cpp │ │ ├── updater.h │ │ ├── video.cpp │ │ ├── video.h │ │ └── warning.cpp │ ├── config.h │ ├── console.h │ ├── console.rs │ ├── demo.h │ ├── discord.h │ ├── docs │ │ ├── client_time.txt │ │ ├── prediction.txt │ │ ├── server_op.txt │ │ └── snapshots.txt │ ├── editor.h │ ├── engine.h │ ├── external │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── glew │ │ │ ├── GL │ │ │ │ ├── eglew.h │ │ │ │ ├── glew.h │ │ │ │ ├── glxew.h │ │ │ │ └── wglew.h │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── VERSION.txt │ │ │ └── glew.c │ │ ├── important.txt │ │ ├── json-parser │ │ │ ├── LICENSE │ │ │ ├── VERSION.txt │ │ │ ├── json.c │ │ │ └── json.h │ │ ├── md5 │ │ │ ├── md5.c │ │ │ └── md5.h │ │ ├── wavpack │ │ │ ├── VERSION.txt │ │ │ ├── arm.S │ │ │ ├── arml.S │ │ │ ├── bits.c │ │ │ ├── coldfire.S │ │ │ ├── float.c │ │ │ ├── license.txt │ │ │ ├── metadata.c │ │ │ ├── readme.txt │ │ │ ├── unpack.c │ │ │ ├── wavpack.h │ │ │ ├── words.c │ │ │ ├── wputils.c │ │ │ └── wvfilter.c.no_compile │ │ └── zlib │ │ │ ├── VERSION.txt │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── gzclose.c │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ ├── favorites.h │ ├── friends.h │ ├── gfx │ │ ├── image.cpp │ │ ├── image_loader.cpp │ │ ├── image_loader.h │ │ ├── image_manipulation.cpp │ │ └── image_manipulation.h │ ├── ghost.h │ ├── graphics.h │ ├── http.h │ ├── image.h │ ├── input.h │ ├── kernel.h │ ├── keys.h │ ├── lib.rs │ ├── map.h │ ├── message.h │ ├── notifications.h │ ├── rust.h │ ├── server.h │ ├── server │ │ ├── antibot.cpp │ │ ├── antibot.h │ │ ├── authmanager.cpp │ │ ├── authmanager.h │ │ ├── databases │ │ │ ├── connection.cpp │ │ │ ├── connection.h │ │ │ ├── connection_pool.cpp │ │ │ ├── connection_pool.h │ │ │ ├── mysql.cpp │ │ │ └── sqlite.cpp │ │ ├── main.cpp │ │ ├── name_ban.cpp │ │ ├── name_ban.h │ │ ├── register.cpp │ │ ├── register.h │ │ ├── server.cpp │ │ ├── server.h │ │ ├── server_logger.cpp │ │ ├── server_logger.h │ │ ├── snap_id_pool.cpp │ │ ├── snap_id_pool.h │ │ ├── sql_string_helpers.cpp │ │ ├── sql_string_helpers.h │ │ ├── upnp.cpp │ │ └── upnp.h │ ├── serverbrowser.h │ ├── shared │ │ ├── Cargo.toml │ │ ├── assertion_logger.cpp │ │ ├── assertion_logger.h │ │ ├── build.rs │ │ ├── compression.cpp │ │ ├── compression.h │ │ ├── config.cpp │ │ ├── config.h │ │ ├── config.rs │ │ ├── config_variables.h │ │ ├── console.cpp │ │ ├── console.h │ │ ├── csv.cpp │ │ ├── csv.h │ │ ├── datafile.cpp │ │ ├── datafile.h │ │ ├── demo.cpp │ │ ├── demo.h │ │ ├── econ.cpp │ │ ├── econ.h │ │ ├── engine.cpp │ │ ├── entity_variables.h │ │ ├── fifo.cpp │ │ ├── fifo.h │ │ ├── filecollection.cpp │ │ ├── filecollection.h │ │ ├── global_uuid_manager.cpp │ │ ├── host_lookup.cpp │ │ ├── host_lookup.h │ │ ├── http.cpp │ │ ├── http.h │ │ ├── huffman.cpp │ │ ├── huffman.h │ │ ├── jobs.cpp │ │ ├── jobs.h │ │ ├── json.cpp │ │ ├── json.h │ │ ├── jsonwriter.cpp │ │ ├── jsonwriter.h │ │ ├── kernel.cpp │ │ ├── lib.rs │ │ ├── linereader.cpp │ │ ├── linereader.h │ │ ├── localization.h │ │ ├── map.cpp │ │ ├── map.h │ │ ├── masterserver.cpp │ │ ├── masterserver.h │ │ ├── memheap.cpp │ │ ├── memheap.h │ │ ├── netban.cpp │ │ ├── netban.h │ │ ├── network.cpp │ │ ├── network.h │ │ ├── network_client.cpp │ │ ├── network_conn.cpp │ │ ├── network_console.cpp │ │ ├── network_console_conn.cpp │ │ ├── network_server.cpp │ │ ├── network_stun.cpp │ │ ├── packer.cpp │ │ ├── packer.h │ │ ├── protocol.h │ │ ├── protocol7.h │ │ ├── protocol_ex.cpp │ │ ├── protocol_ex.h │ │ ├── protocol_ex_msgs.h │ │ ├── protocolglue.cpp │ │ ├── protocolglue.h │ │ ├── ringbuffer.cpp │ │ ├── ringbuffer.h │ │ ├── rust_version.rs │ │ ├── serverinfo.cpp │ │ ├── serverinfo.h │ │ ├── sixup_translate_snapshot.cpp │ │ ├── snapshot.cpp │ │ ├── snapshot.h │ │ ├── storage.cpp │ │ ├── stun.cpp │ │ ├── stun.h │ │ ├── teehistorian_ex.cpp │ │ ├── teehistorian_ex.h │ │ ├── teehistorian_ex_chunks.h │ │ ├── translation_context.cpp │ │ ├── translation_context.h │ │ ├── uuid_manager.cpp │ │ ├── uuid_manager.h │ │ ├── video.cpp │ │ ├── video.h │ │ ├── websockets.cpp │ │ └── websockets.h │ ├── sound.h │ ├── sqlite.h │ ├── steam.h │ ├── storage.h │ ├── textrender.h │ ├── updater.h │ ├── uuid.h │ └── warning.h ├── game │ ├── alloc.h │ ├── client │ │ ├── animstate.cpp │ │ ├── animstate.h │ │ ├── component.cpp │ │ ├── component.h │ │ ├── components │ │ │ ├── background.cpp │ │ │ ├── background.h │ │ │ ├── binds.cpp │ │ │ ├── binds.h │ │ │ ├── broadcast.cpp │ │ │ ├── broadcast.h │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── chat.cpp │ │ │ ├── chat.h │ │ │ ├── console.cpp │ │ │ ├── console.h │ │ │ ├── controls.cpp │ │ │ ├── controls.h │ │ │ ├── countryflags.cpp │ │ │ ├── countryflags.h │ │ │ ├── damageind.cpp │ │ │ ├── damageind.h │ │ │ ├── debughud.cpp │ │ │ ├── debughud.h │ │ │ ├── effects.cpp │ │ │ ├── effects.h │ │ │ ├── emoticon.cpp │ │ │ ├── emoticon.h │ │ │ ├── entity │ │ │ │ ├── anti_spawn_block.cpp │ │ │ │ ├── anti_spawn_block.h │ │ │ │ ├── commands.cpp │ │ │ │ ├── e_enums.h │ │ │ │ ├── entity.cpp │ │ │ │ ├── entity.h │ │ │ │ ├── freeze_kill.cpp │ │ │ │ ├── freeze_kill.h │ │ │ │ ├── mapconfig.cpp │ │ │ │ ├── mapconfig.h │ │ │ │ ├── menus_entity.cpp │ │ │ │ ├── update.cpp │ │ │ │ └── update.h │ │ │ ├── flow.cpp │ │ │ ├── flow.h │ │ │ ├── freezebars.cpp │ │ │ ├── freezebars.h │ │ │ ├── ghost.cpp │ │ │ ├── ghost.h │ │ │ ├── hud.cpp │ │ │ ├── hud.h │ │ │ ├── infomessages.cpp │ │ │ ├── infomessages.h │ │ │ ├── items.cpp │ │ │ ├── items.h │ │ │ ├── mapimages.cpp │ │ │ ├── mapimages.h │ │ │ ├── maplayers.cpp │ │ │ ├── maplayers.h │ │ │ ├── mapsounds.cpp │ │ │ ├── mapsounds.h │ │ │ ├── menu_background.cpp │ │ │ ├── menu_background.h │ │ │ ├── menus.cpp │ │ │ ├── menus.h │ │ │ ├── menus_browser.cpp │ │ │ ├── menus_demo.cpp │ │ │ ├── menus_ingame.cpp │ │ │ ├── menus_settings.cpp │ │ │ ├── menus_settings7.cpp │ │ │ ├── menus_settings_assets.cpp │ │ │ ├── menus_start.cpp │ │ │ ├── motd.cpp │ │ │ ├── motd.h │ │ │ ├── nameplates.cpp │ │ │ ├── nameplates.h │ │ │ ├── particles.cpp │ │ │ ├── particles.h │ │ │ ├── players.cpp │ │ │ ├── players.h │ │ │ ├── race_demo.cpp │ │ │ ├── race_demo.h │ │ │ ├── scoreboard.cpp │ │ │ ├── scoreboard.h │ │ │ ├── skins.cpp │ │ │ ├── skins.h │ │ │ ├── skins7.cpp │ │ │ ├── skins7.h │ │ │ ├── sounds.cpp │ │ │ ├── sounds.h │ │ │ ├── spectator.cpp │ │ │ ├── spectator.h │ │ │ ├── statboard.cpp │ │ │ ├── statboard.h │ │ │ ├── tclient │ │ │ │ ├── bindchat.cpp │ │ │ │ ├── bindchat.h │ │ │ │ ├── bindwheel.cpp │ │ │ │ ├── bindwheel.h │ │ │ │ ├── outlines.cpp │ │ │ │ ├── outlines.h │ │ │ │ ├── player_indicator.cpp │ │ │ │ ├── player_indicator.h │ │ │ │ ├── rainbow.cpp │ │ │ │ ├── rainbow.h │ │ │ │ ├── skinprofiles.cpp │ │ │ │ ├── skinprofiles.h │ │ │ │ ├── warlist.cpp │ │ │ │ └── warlist.h │ │ │ ├── tooltips.cpp │ │ │ ├── tooltips.h │ │ │ ├── touch_controls.cpp │ │ │ ├── touch_controls.h │ │ │ ├── voting.cpp │ │ │ └── voting.h │ │ ├── gameclient.cpp │ │ ├── gameclient.h │ │ ├── laser_data.cpp │ │ ├── laser_data.h │ │ ├── lineinput.cpp │ │ ├── lineinput.h │ │ ├── pickup_data.cpp │ │ ├── pickup_data.h │ │ ├── prediction │ │ │ ├── entities │ │ │ │ ├── character.cpp │ │ │ │ ├── character.h │ │ │ │ ├── door.cpp │ │ │ │ ├── door.h │ │ │ │ ├── dragger.cpp │ │ │ │ ├── dragger.h │ │ │ │ ├── laser.cpp │ │ │ │ ├── laser.h │ │ │ │ ├── pickup.cpp │ │ │ │ ├── pickup.h │ │ │ │ ├── plasma.cpp │ │ │ │ ├── plasma.h │ │ │ │ ├── projectile.cpp │ │ │ │ └── projectile.h │ │ │ ├── entity.cpp │ │ │ ├── entity.h │ │ │ ├── gameworld.cpp │ │ │ └── gameworld.h │ │ ├── projectile_data.cpp │ │ ├── projectile_data.h │ │ ├── race.cpp │ │ ├── race.h │ │ ├── render.cpp │ │ ├── render.h │ │ ├── render_map.cpp │ │ ├── sixup_translate_connless.cpp │ │ ├── sixup_translate_game.cpp │ │ ├── sixup_translate_snapshot.cpp │ │ ├── skin.cpp │ │ ├── skin.h │ │ ├── ui.cpp │ │ ├── ui.h │ │ ├── ui_listbox.cpp │ │ ├── ui_listbox.h │ │ ├── ui_rect.cpp │ │ ├── ui_rect.h │ │ ├── ui_scrollregion.cpp │ │ └── ui_scrollregion.h │ ├── collision.cpp │ ├── collision.h │ ├── editor │ │ ├── auto_map.cpp │ │ ├── auto_map.h │ │ ├── component.cpp │ │ ├── component.h │ │ ├── editor.cpp │ │ ├── editor.h │ │ ├── editor_action.h │ │ ├── editor_actions.cpp │ │ ├── editor_actions.h │ │ ├── editor_history.cpp │ │ ├── editor_history.h │ │ ├── editor_object.cpp │ │ ├── editor_object.h │ │ ├── editor_props.cpp │ │ ├── editor_server_settings.cpp │ │ ├── editor_server_settings.h │ │ ├── editor_trackers.cpp │ │ ├── editor_trackers.h │ │ ├── editor_ui.h │ │ ├── enums.h │ │ ├── explanations.cpp │ │ ├── layer_selector.cpp │ │ ├── layer_selector.h │ │ ├── map_grid.cpp │ │ ├── map_grid.h │ │ ├── map_view.cpp │ │ ├── map_view.h │ │ ├── mapitems.h │ │ ├── mapitems │ │ │ ├── envelope.cpp │ │ │ ├── envelope.h │ │ │ ├── image.cpp │ │ │ ├── image.h │ │ │ ├── layer.h │ │ │ ├── layer_front.cpp │ │ │ ├── layer_front.h │ │ │ ├── layer_game.cpp │ │ │ ├── layer_game.h │ │ │ ├── layer_group.cpp │ │ │ ├── layer_group.h │ │ │ ├── layer_quads.cpp │ │ │ ├── layer_quads.h │ │ │ ├── layer_sounds.cpp │ │ │ ├── layer_sounds.h │ │ │ ├── layer_speedup.cpp │ │ │ ├── layer_speedup.h │ │ │ ├── layer_switch.cpp │ │ │ ├── layer_switch.h │ │ │ ├── layer_tele.cpp │ │ │ ├── layer_tele.h │ │ │ ├── layer_tiles.cpp │ │ │ ├── layer_tiles.h │ │ │ ├── layer_tune.cpp │ │ │ ├── layer_tune.h │ │ │ ├── map.cpp │ │ │ ├── map_io.cpp │ │ │ ├── sound.cpp │ │ │ └── sound.h │ │ ├── popups.cpp │ │ ├── prompt.cpp │ │ ├── prompt.h │ │ ├── proof_mode.cpp │ │ ├── proof_mode.h │ │ ├── quadart.cpp │ │ ├── quadart.h │ │ ├── quick_action.h │ │ ├── quick_actions.cpp │ │ ├── quick_actions.h │ │ ├── smooth_value.cpp │ │ ├── smooth_value.h │ │ └── tileart.cpp │ ├── gamecore.cpp │ ├── gamecore.h │ ├── layers.cpp │ ├── layers.h │ ├── localization.cpp │ ├── localization.h │ ├── mapbugs.cpp │ ├── mapbugs.h │ ├── mapbugs_list.h │ ├── mapitems.cpp │ ├── mapitems.h │ ├── mapitems_ex.cpp │ ├── mapitems_ex.h │ ├── mapitems_ex_types.h │ ├── prng.cpp │ ├── prng.h │ ├── race_state.h │ ├── server │ │ ├── ddracechat.cpp │ │ ├── ddracecommands.cpp │ │ ├── entities │ │ │ ├── character.cpp │ │ │ ├── character.h │ │ │ ├── door.cpp │ │ │ ├── door.h │ │ │ ├── dragger.cpp │ │ │ ├── dragger.h │ │ │ ├── dragger_beam.cpp │ │ │ ├── dragger_beam.h │ │ │ ├── gun.cpp │ │ │ ├── gun.h │ │ │ ├── laser.cpp │ │ │ ├── laser.h │ │ │ ├── light.cpp │ │ │ ├── light.h │ │ │ ├── pickup.cpp │ │ │ ├── pickup.h │ │ │ ├── plasma.cpp │ │ │ ├── plasma.h │ │ │ ├── projectile.cpp │ │ │ └── projectile.h │ │ ├── entity.cpp │ │ ├── entity.h │ │ ├── eventhandler.cpp │ │ ├── eventhandler.h │ │ ├── gamecontext.cpp │ │ ├── gamecontext.h │ │ ├── gamecontroller.cpp │ │ ├── gamecontroller.h │ │ ├── gamemodes │ │ │ ├── DDRace.cpp │ │ │ ├── DDRace.h │ │ │ ├── mod.cpp │ │ │ └── mod.h │ │ ├── gameworld.cpp │ │ ├── gameworld.h │ │ ├── player.cpp │ │ ├── player.h │ │ ├── save.cpp │ │ ├── save.h │ │ ├── score.cpp │ │ ├── score.h │ │ ├── scoreworker.cpp │ │ ├── scoreworker.h │ │ ├── teams.cpp │ │ ├── teams.h │ │ ├── teehistorian.cpp │ │ ├── teehistorian.h │ │ ├── teeinfo.cpp │ │ └── teeinfo.h │ ├── teamscore.cpp │ ├── teamscore.h │ ├── tuning.h │ ├── version.h │ └── voting.h ├── macos │ ├── client.mm │ ├── notifications.mm │ └── server.mm ├── masterping │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── mastersrv │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ └── src │ │ ├── addr.rs │ │ ├── config.rs │ │ ├── locations.rs │ │ └── main.rs ├── rust-bridge │ ├── .clang-tidy │ ├── cpp │ │ ├── console.cpp │ │ └── console.h │ ├── engine │ │ └── shared │ │ │ ├── rust_version.cpp │ │ │ └── rust_version.h │ └── test │ │ ├── Cargo.toml │ │ ├── build.rs │ │ └── lib.rs ├── steam │ ├── steam_api_flat.h │ └── steam_api_stub.cpp ├── test │ ├── aio.cpp │ ├── bezier.cpp │ ├── blocklist_driver.cpp │ ├── bytes_be.cpp │ ├── chunk_header.cpp │ ├── color.cpp │ ├── compression.cpp │ ├── csv.cpp │ ├── datafile.cpp │ ├── editor.cpp │ ├── fs.cpp │ ├── gameworld.cpp │ ├── git_revision.cpp │ ├── hash.cpp │ ├── huffman.cpp │ ├── io.cpp │ ├── jobs.cpp │ ├── json.cpp │ ├── jsonwriter.cpp │ ├── linereader.cpp │ ├── mapbugs.cpp │ ├── math.cpp │ ├── memory.cpp │ ├── name_ban.cpp │ ├── net.cpp │ ├── netaddr.cpp │ ├── os.cpp │ ├── packer.cpp │ ├── prng.cpp │ ├── score.cpp │ ├── secure_random.cpp │ ├── serverbrowser.cpp │ ├── serverinfo.cpp │ ├── shell_execute.cpp │ ├── snapshot.cpp │ ├── str.cpp │ ├── strip_path_and_extension.cpp │ ├── swap_endian.cpp │ ├── teehistorian.cpp │ ├── test.cpp │ ├── test.h │ ├── thread.cpp │ ├── time.cpp │ ├── timestamp.cpp │ ├── unix.cpp │ └── uuid.cpp └── tools │ ├── config_common.h │ ├── config_retrieve.cpp │ ├── config_store.cpp │ ├── crapnet.cpp │ ├── demo_extract_chat.cpp │ ├── dilate.cpp │ ├── dummy_map.cpp │ ├── map_convert_07.cpp │ ├── map_diff.cpp │ ├── map_extract.cpp │ ├── map_find_env.cpp │ ├── map_optimize.cpp │ ├── map_replace_area.cpp │ ├── map_replace_image.cpp │ ├── map_resave.cpp │ ├── map_test.cpp │ ├── packetgen.cpp │ ├── stun.cpp │ ├── twping.cpp │ ├── unicode_confusables.cpp │ └── uuid.cpp ├── steam_api.dll ├── steam_appid.txt ├── storage.cfg ├── ubsan.supp └── valgrind.supp /.cargo/config.toml: -------------------------------------------------------------------------------- 1 | [target.'cfg(target_env = "msvc")'] 2 | rustflags = ["-C", "target-feature=+crt-static"] 3 | -------------------------------------------------------------------------------- /.clangd: -------------------------------------------------------------------------------- 1 | Style: 2 | AngledHeaders: ["base/.*", "engine/.*", "game/.*"] 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.sh] 2 | space_redirects = true 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | other/*/include/* linguist-vendored 2 | src/engine/external/* linguist-vendored 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | src/game/editor/mapitems/map_io.cpp @Patiga 2 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | include: '.gitlab/*.yml' 2 | 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "ddnet-libs"] 2 | path = ddnet-libs 3 | url = https://github.com/ddnet/ddnet-libs 4 | shallow = true 5 | -------------------------------------------------------------------------------- /data/announcement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/announcement.txt -------------------------------------------------------------------------------- /data/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/arrow.png -------------------------------------------------------------------------------- /data/assets/entities/comfort/ddnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/assets/entities/comfort/ddnet.png -------------------------------------------------------------------------------- /data/assets/entities/license.txt: -------------------------------------------------------------------------------- 1 | comfort: 2 | Copyright louis 3 | CC BY-SA 3.0 license (https://creativecommons.org/licenses/by-sa/3.0/) 4 | -------------------------------------------------------------------------------- /data/assets/game/game_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/assets/game/game_06.png -------------------------------------------------------------------------------- /data/audio/foley_body_impact-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_body_impact-01.wv -------------------------------------------------------------------------------- /data/audio/foley_body_impact-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_body_impact-02.wv -------------------------------------------------------------------------------- /data/audio/foley_body_impact-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_body_impact-03.wv -------------------------------------------------------------------------------- /data/audio/foley_body_splat-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_body_splat-01.wv -------------------------------------------------------------------------------- /data/audio/foley_body_splat-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_body_splat-02.wv -------------------------------------------------------------------------------- /data/audio/foley_body_splat-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_body_splat-03.wv -------------------------------------------------------------------------------- /data/audio/foley_body_splat-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_body_splat-04.wv -------------------------------------------------------------------------------- /data/audio/foley_dbljump-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_dbljump-01.wv -------------------------------------------------------------------------------- /data/audio/foley_dbljump-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_dbljump-02.wv -------------------------------------------------------------------------------- /data/audio/foley_dbljump-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_dbljump-03.wv -------------------------------------------------------------------------------- /data/audio/foley_foot_left-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_foot_left-01.wv -------------------------------------------------------------------------------- /data/audio/foley_foot_left-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_foot_left-02.wv -------------------------------------------------------------------------------- /data/audio/foley_foot_left-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_foot_left-03.wv -------------------------------------------------------------------------------- /data/audio/foley_foot_left-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_foot_left-04.wv -------------------------------------------------------------------------------- /data/audio/foley_foot_right-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_foot_right-01.wv -------------------------------------------------------------------------------- /data/audio/foley_foot_right-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_foot_right-02.wv -------------------------------------------------------------------------------- /data/audio/foley_foot_right-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_foot_right-03.wv -------------------------------------------------------------------------------- /data/audio/foley_foot_right-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_foot_right-04.wv -------------------------------------------------------------------------------- /data/audio/foley_land-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_land-01.wv -------------------------------------------------------------------------------- /data/audio/foley_land-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_land-02.wv -------------------------------------------------------------------------------- /data/audio/foley_land-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_land-03.wv -------------------------------------------------------------------------------- /data/audio/foley_land-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/foley_land-04.wv -------------------------------------------------------------------------------- /data/audio/hook_attach-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/hook_attach-01.wv -------------------------------------------------------------------------------- /data/audio/hook_attach-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/hook_attach-02.wv -------------------------------------------------------------------------------- /data/audio/hook_attach-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/hook_attach-03.wv -------------------------------------------------------------------------------- /data/audio/hook_loop-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/hook_loop-01.wv -------------------------------------------------------------------------------- /data/audio/hook_loop-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/hook_loop-02.wv -------------------------------------------------------------------------------- /data/audio/hook_noattach-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/hook_noattach-01.wv -------------------------------------------------------------------------------- /data/audio/hook_noattach-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/hook_noattach-02.wv -------------------------------------------------------------------------------- /data/audio/hook_noattach-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/hook_noattach-03.wv -------------------------------------------------------------------------------- /data/audio/music_menu.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/music_menu.wv -------------------------------------------------------------------------------- /data/audio/sfx_ctf_cap_pl.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_ctf_cap_pl.wv -------------------------------------------------------------------------------- /data/audio/sfx_ctf_drop.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_ctf_drop.wv -------------------------------------------------------------------------------- /data/audio/sfx_ctf_grab_en.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_ctf_grab_en.wv -------------------------------------------------------------------------------- /data/audio/sfx_ctf_grab_pl.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_ctf_grab_pl.wv -------------------------------------------------------------------------------- /data/audio/sfx_ctf_rtn.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_ctf_rtn.wv -------------------------------------------------------------------------------- /data/audio/sfx_hit_strong-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_hit_strong-01.wv -------------------------------------------------------------------------------- /data/audio/sfx_hit_strong-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_hit_strong-02.wv -------------------------------------------------------------------------------- /data/audio/sfx_hit_weak-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_hit_weak-01.wv -------------------------------------------------------------------------------- /data/audio/sfx_hit_weak-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_hit_weak-02.wv -------------------------------------------------------------------------------- /data/audio/sfx_hit_weak-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_hit_weak-03.wv -------------------------------------------------------------------------------- /data/audio/sfx_msg-client.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_msg-client.wv -------------------------------------------------------------------------------- /data/audio/sfx_msg-highlight.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_msg-highlight.wv -------------------------------------------------------------------------------- /data/audio/sfx_msg-server.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_msg-server.wv -------------------------------------------------------------------------------- /data/audio/sfx_pickup_arm-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_pickup_arm-01.wv -------------------------------------------------------------------------------- /data/audio/sfx_pickup_arm-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_pickup_arm-02.wv -------------------------------------------------------------------------------- /data/audio/sfx_pickup_arm-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_pickup_arm-03.wv -------------------------------------------------------------------------------- /data/audio/sfx_pickup_arm-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_pickup_arm-04.wv -------------------------------------------------------------------------------- /data/audio/sfx_pickup_gun.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_pickup_gun.wv -------------------------------------------------------------------------------- /data/audio/sfx_pickup_hrt-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_pickup_hrt-01.wv -------------------------------------------------------------------------------- /data/audio/sfx_pickup_hrt-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_pickup_hrt-02.wv -------------------------------------------------------------------------------- /data/audio/sfx_pickup_launcher.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_pickup_launcher.wv -------------------------------------------------------------------------------- /data/audio/sfx_pickup_ninja.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_pickup_ninja.wv -------------------------------------------------------------------------------- /data/audio/sfx_pickup_sg.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_pickup_sg.wv -------------------------------------------------------------------------------- /data/audio/sfx_skid-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_skid-01.wv -------------------------------------------------------------------------------- /data/audio/sfx_skid-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_skid-02.wv -------------------------------------------------------------------------------- /data/audio/sfx_skid-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_skid-03.wv -------------------------------------------------------------------------------- /data/audio/sfx_skid-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_skid-04.wv -------------------------------------------------------------------------------- /data/audio/sfx_spawn_wpn-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_spawn_wpn-01.wv -------------------------------------------------------------------------------- /data/audio/sfx_spawn_wpn-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_spawn_wpn-02.wv -------------------------------------------------------------------------------- /data/audio/sfx_spawn_wpn-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/sfx_spawn_wpn-03.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_cry-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_cry-01.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_cry-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_cry-02.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_ninja-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_ninja-01.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_ninja-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_ninja-02.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_ninja-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_ninja-03.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_ninja-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_ninja-04.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_long-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_long-01.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_long-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_long-02.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-01.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-02.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-03.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-04.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-05.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-05.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-06.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-06.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-07.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-07.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-08.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-08.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-09.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-09.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-10.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-10.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-11.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-11.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_pain_short-12.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_pain_short-12.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_sledge-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_sledge-01.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_sledge-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_sledge-02.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_sledge-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_sledge-03.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_spawn-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_spawn-01.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_spawn-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_spawn-02.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_spawn-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_spawn-03.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_spawn-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_spawn-04.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_spawn-05.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_spawn-05.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_spawn-06.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_spawn-06.wv -------------------------------------------------------------------------------- /data/audio/vo_teefault_spawn-07.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/vo_teefault_spawn-07.wv -------------------------------------------------------------------------------- /data/audio/wp_flump_explo-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_flump_explo-01.wv -------------------------------------------------------------------------------- /data/audio/wp_flump_explo-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_flump_explo-02.wv -------------------------------------------------------------------------------- /data/audio/wp_flump_explo-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_flump_explo-03.wv -------------------------------------------------------------------------------- /data/audio/wp_flump_launch-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_flump_launch-01.wv -------------------------------------------------------------------------------- /data/audio/wp_flump_launch-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_flump_launch-02.wv -------------------------------------------------------------------------------- /data/audio/wp_flump_launch-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_flump_launch-03.wv -------------------------------------------------------------------------------- /data/audio/wp_gun_fire-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_gun_fire-01.wv -------------------------------------------------------------------------------- /data/audio/wp_gun_fire-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_gun_fire-02.wv -------------------------------------------------------------------------------- /data/audio/wp_gun_fire-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_gun_fire-03.wv -------------------------------------------------------------------------------- /data/audio/wp_hammer_hit-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_hammer_hit-01.wv -------------------------------------------------------------------------------- /data/audio/wp_hammer_hit-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_hammer_hit-02.wv -------------------------------------------------------------------------------- /data/audio/wp_hammer_hit-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_hammer_hit-03.wv -------------------------------------------------------------------------------- /data/audio/wp_hammer_swing-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_hammer_swing-01.wv -------------------------------------------------------------------------------- /data/audio/wp_hammer_swing-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_hammer_swing-02.wv -------------------------------------------------------------------------------- /data/audio/wp_hammer_swing-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_hammer_swing-03.wv -------------------------------------------------------------------------------- /data/audio/wp_laser_bnce-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_laser_bnce-01.wv -------------------------------------------------------------------------------- /data/audio/wp_laser_bnce-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_laser_bnce-02.wv -------------------------------------------------------------------------------- /data/audio/wp_laser_bnce-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_laser_bnce-03.wv -------------------------------------------------------------------------------- /data/audio/wp_laser_fire-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_laser_fire-01.wv -------------------------------------------------------------------------------- /data/audio/wp_laser_fire-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_laser_fire-02.wv -------------------------------------------------------------------------------- /data/audio/wp_laser_fire-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_laser_fire-03.wv -------------------------------------------------------------------------------- /data/audio/wp_ninja_attack-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_ninja_attack-01.wv -------------------------------------------------------------------------------- /data/audio/wp_ninja_attack-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_ninja_attack-02.wv -------------------------------------------------------------------------------- /data/audio/wp_ninja_attack-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_ninja_attack-03.wv -------------------------------------------------------------------------------- /data/audio/wp_ninja_attack-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_ninja_attack-04.wv -------------------------------------------------------------------------------- /data/audio/wp_ninja_hit-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_ninja_hit-01.wv -------------------------------------------------------------------------------- /data/audio/wp_ninja_hit-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_ninja_hit-02.wv -------------------------------------------------------------------------------- /data/audio/wp_ninja_hit-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_ninja_hit-03.wv -------------------------------------------------------------------------------- /data/audio/wp_ninja_hit-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_ninja_hit-04.wv -------------------------------------------------------------------------------- /data/audio/wp_noammo-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_noammo-01.wv -------------------------------------------------------------------------------- /data/audio/wp_noammo-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_noammo-02.wv -------------------------------------------------------------------------------- /data/audio/wp_noammo-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_noammo-03.wv -------------------------------------------------------------------------------- /data/audio/wp_noammo-04.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_noammo-04.wv -------------------------------------------------------------------------------- /data/audio/wp_noammo-05.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_noammo-05.wv -------------------------------------------------------------------------------- /data/audio/wp_shotty_fire-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_shotty_fire-01.wv -------------------------------------------------------------------------------- /data/audio/wp_shotty_fire-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_shotty_fire-02.wv -------------------------------------------------------------------------------- /data/audio/wp_shotty_fire-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_shotty_fire-03.wv -------------------------------------------------------------------------------- /data/audio/wp_switch-01.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_switch-01.wv -------------------------------------------------------------------------------- /data/audio/wp_switch-02.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_switch-02.wv -------------------------------------------------------------------------------- /data/audio/wp_switch-03.wv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/audio/wp_switch-03.wv -------------------------------------------------------------------------------- /data/background_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/background_noise.png -------------------------------------------------------------------------------- /data/blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/blob.png -------------------------------------------------------------------------------- /data/censorlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/censorlist.txt -------------------------------------------------------------------------------- /data/communityicons/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/communityicons/none.png -------------------------------------------------------------------------------- /data/countryflags/AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AD.png -------------------------------------------------------------------------------- /data/countryflags/AE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AE.png -------------------------------------------------------------------------------- /data/countryflags/AF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AF.png -------------------------------------------------------------------------------- /data/countryflags/AG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AG.png -------------------------------------------------------------------------------- /data/countryflags/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AI.png -------------------------------------------------------------------------------- /data/countryflags/AL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AL.png -------------------------------------------------------------------------------- /data/countryflags/AM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AM.png -------------------------------------------------------------------------------- /data/countryflags/AO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AO.png -------------------------------------------------------------------------------- /data/countryflags/AQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AQ.png -------------------------------------------------------------------------------- /data/countryflags/AR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AR.png -------------------------------------------------------------------------------- /data/countryflags/AS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AS.png -------------------------------------------------------------------------------- /data/countryflags/AT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AT.png -------------------------------------------------------------------------------- /data/countryflags/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AU.png -------------------------------------------------------------------------------- /data/countryflags/AW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AW.png -------------------------------------------------------------------------------- /data/countryflags/AX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AX.png -------------------------------------------------------------------------------- /data/countryflags/AZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/AZ.png -------------------------------------------------------------------------------- /data/countryflags/BA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BA.png -------------------------------------------------------------------------------- /data/countryflags/BB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BB.png -------------------------------------------------------------------------------- /data/countryflags/BD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BD.png -------------------------------------------------------------------------------- /data/countryflags/BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BE.png -------------------------------------------------------------------------------- /data/countryflags/BF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BF.png -------------------------------------------------------------------------------- /data/countryflags/BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BG.png -------------------------------------------------------------------------------- /data/countryflags/BH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BH.png -------------------------------------------------------------------------------- /data/countryflags/BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BI.png -------------------------------------------------------------------------------- /data/countryflags/BJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BJ.png -------------------------------------------------------------------------------- /data/countryflags/BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BL.png -------------------------------------------------------------------------------- /data/countryflags/BM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BM.png -------------------------------------------------------------------------------- /data/countryflags/BN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BN.png -------------------------------------------------------------------------------- /data/countryflags/BO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BO.png -------------------------------------------------------------------------------- /data/countryflags/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BR.png -------------------------------------------------------------------------------- /data/countryflags/BS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BS.png -------------------------------------------------------------------------------- /data/countryflags/BT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BT.png -------------------------------------------------------------------------------- /data/countryflags/BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BW.png -------------------------------------------------------------------------------- /data/countryflags/BY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BY.png -------------------------------------------------------------------------------- /data/countryflags/BZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/BZ.png -------------------------------------------------------------------------------- /data/countryflags/CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CA.png -------------------------------------------------------------------------------- /data/countryflags/CC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CC.png -------------------------------------------------------------------------------- /data/countryflags/CD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CD.png -------------------------------------------------------------------------------- /data/countryflags/CF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CF.png -------------------------------------------------------------------------------- /data/countryflags/CG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CG.png -------------------------------------------------------------------------------- /data/countryflags/CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CH.png -------------------------------------------------------------------------------- /data/countryflags/CI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CI.png -------------------------------------------------------------------------------- /data/countryflags/CK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CK.png -------------------------------------------------------------------------------- /data/countryflags/CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CL.png -------------------------------------------------------------------------------- /data/countryflags/CM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CM.png -------------------------------------------------------------------------------- /data/countryflags/CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CN.png -------------------------------------------------------------------------------- /data/countryflags/CO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CO.png -------------------------------------------------------------------------------- /data/countryflags/CR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CR.png -------------------------------------------------------------------------------- /data/countryflags/CU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CU.png -------------------------------------------------------------------------------- /data/countryflags/CV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CV.png -------------------------------------------------------------------------------- /data/countryflags/CW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CW.png -------------------------------------------------------------------------------- /data/countryflags/CX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CX.png -------------------------------------------------------------------------------- /data/countryflags/CY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CY.png -------------------------------------------------------------------------------- /data/countryflags/CZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/CZ.png -------------------------------------------------------------------------------- /data/countryflags/DE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/DE.png -------------------------------------------------------------------------------- /data/countryflags/DJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/DJ.png -------------------------------------------------------------------------------- /data/countryflags/DK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/DK.png -------------------------------------------------------------------------------- /data/countryflags/DM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/DM.png -------------------------------------------------------------------------------- /data/countryflags/DO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/DO.png -------------------------------------------------------------------------------- /data/countryflags/DZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/DZ.png -------------------------------------------------------------------------------- /data/countryflags/EC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/EC.png -------------------------------------------------------------------------------- /data/countryflags/EE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/EE.png -------------------------------------------------------------------------------- /data/countryflags/EG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/EG.png -------------------------------------------------------------------------------- /data/countryflags/EH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/EH.png -------------------------------------------------------------------------------- /data/countryflags/ER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ER.png -------------------------------------------------------------------------------- /data/countryflags/ES-CT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ES-CT.png -------------------------------------------------------------------------------- /data/countryflags/ES-GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ES-GA.png -------------------------------------------------------------------------------- /data/countryflags/ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ES.png -------------------------------------------------------------------------------- /data/countryflags/ET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ET.png -------------------------------------------------------------------------------- /data/countryflags/EU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/EU.png -------------------------------------------------------------------------------- /data/countryflags/FI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/FI.png -------------------------------------------------------------------------------- /data/countryflags/FJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/FJ.png -------------------------------------------------------------------------------- /data/countryflags/FK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/FK.png -------------------------------------------------------------------------------- /data/countryflags/FM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/FM.png -------------------------------------------------------------------------------- /data/countryflags/FO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/FO.png -------------------------------------------------------------------------------- /data/countryflags/FR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/FR.png -------------------------------------------------------------------------------- /data/countryflags/GA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GA.png -------------------------------------------------------------------------------- /data/countryflags/GB-ENG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GB-ENG.png -------------------------------------------------------------------------------- /data/countryflags/GB-NIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GB-NIR.png -------------------------------------------------------------------------------- /data/countryflags/GB-SCT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GB-SCT.png -------------------------------------------------------------------------------- /data/countryflags/GB-WLS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GB-WLS.png -------------------------------------------------------------------------------- /data/countryflags/GB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GB.png -------------------------------------------------------------------------------- /data/countryflags/GD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GD.png -------------------------------------------------------------------------------- /data/countryflags/GE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GE.png -------------------------------------------------------------------------------- /data/countryflags/GF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GF.png -------------------------------------------------------------------------------- /data/countryflags/GG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GG.png -------------------------------------------------------------------------------- /data/countryflags/GH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GH.png -------------------------------------------------------------------------------- /data/countryflags/GI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GI.png -------------------------------------------------------------------------------- /data/countryflags/GL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GL.png -------------------------------------------------------------------------------- /data/countryflags/GM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GM.png -------------------------------------------------------------------------------- /data/countryflags/GN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GN.png -------------------------------------------------------------------------------- /data/countryflags/GP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GP.png -------------------------------------------------------------------------------- /data/countryflags/GQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GQ.png -------------------------------------------------------------------------------- /data/countryflags/GR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GR.png -------------------------------------------------------------------------------- /data/countryflags/GS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GS.png -------------------------------------------------------------------------------- /data/countryflags/GT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GT.png -------------------------------------------------------------------------------- /data/countryflags/GU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GU.png -------------------------------------------------------------------------------- /data/countryflags/GW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GW.png -------------------------------------------------------------------------------- /data/countryflags/GY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/GY.png -------------------------------------------------------------------------------- /data/countryflags/HK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/HK.png -------------------------------------------------------------------------------- /data/countryflags/HN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/HN.png -------------------------------------------------------------------------------- /data/countryflags/HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/HR.png -------------------------------------------------------------------------------- /data/countryflags/HT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/HT.png -------------------------------------------------------------------------------- /data/countryflags/HU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/HU.png -------------------------------------------------------------------------------- /data/countryflags/ID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ID.png -------------------------------------------------------------------------------- /data/countryflags/IE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/IE.png -------------------------------------------------------------------------------- /data/countryflags/IL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/IL.png -------------------------------------------------------------------------------- /data/countryflags/IM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/IM.png -------------------------------------------------------------------------------- /data/countryflags/IN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/IN.png -------------------------------------------------------------------------------- /data/countryflags/IO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/IO.png -------------------------------------------------------------------------------- /data/countryflags/IQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/IQ.png -------------------------------------------------------------------------------- /data/countryflags/IR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/IR.png -------------------------------------------------------------------------------- /data/countryflags/IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/IS.png -------------------------------------------------------------------------------- /data/countryflags/IT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/IT.png -------------------------------------------------------------------------------- /data/countryflags/JE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/JE.png -------------------------------------------------------------------------------- /data/countryflags/JM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/JM.png -------------------------------------------------------------------------------- /data/countryflags/JO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/JO.png -------------------------------------------------------------------------------- /data/countryflags/JP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/JP.png -------------------------------------------------------------------------------- /data/countryflags/KE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/KE.png -------------------------------------------------------------------------------- /data/countryflags/KG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/KG.png -------------------------------------------------------------------------------- /data/countryflags/KH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/KH.png -------------------------------------------------------------------------------- /data/countryflags/KI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/KI.png -------------------------------------------------------------------------------- /data/countryflags/KM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/KM.png -------------------------------------------------------------------------------- /data/countryflags/KN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/KN.png -------------------------------------------------------------------------------- /data/countryflags/KP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/KP.png -------------------------------------------------------------------------------- /data/countryflags/KR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/KR.png -------------------------------------------------------------------------------- /data/countryflags/KW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/KW.png -------------------------------------------------------------------------------- /data/countryflags/KY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/KY.png -------------------------------------------------------------------------------- /data/countryflags/KZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/KZ.png -------------------------------------------------------------------------------- /data/countryflags/LA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/LA.png -------------------------------------------------------------------------------- /data/countryflags/LB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/LB.png -------------------------------------------------------------------------------- /data/countryflags/LC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/LC.png -------------------------------------------------------------------------------- /data/countryflags/LI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/LI.png -------------------------------------------------------------------------------- /data/countryflags/LK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/LK.png -------------------------------------------------------------------------------- /data/countryflags/LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/LR.png -------------------------------------------------------------------------------- /data/countryflags/LS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/LS.png -------------------------------------------------------------------------------- /data/countryflags/LT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/LT.png -------------------------------------------------------------------------------- /data/countryflags/LU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/LU.png -------------------------------------------------------------------------------- /data/countryflags/LV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/LV.png -------------------------------------------------------------------------------- /data/countryflags/LY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/LY.png -------------------------------------------------------------------------------- /data/countryflags/MA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MA.png -------------------------------------------------------------------------------- /data/countryflags/MC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MC.png -------------------------------------------------------------------------------- /data/countryflags/MD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MD.png -------------------------------------------------------------------------------- /data/countryflags/ME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ME.png -------------------------------------------------------------------------------- /data/countryflags/MF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MF.png -------------------------------------------------------------------------------- /data/countryflags/MG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MG.png -------------------------------------------------------------------------------- /data/countryflags/MH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MH.png -------------------------------------------------------------------------------- /data/countryflags/MK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MK.png -------------------------------------------------------------------------------- /data/countryflags/ML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ML.png -------------------------------------------------------------------------------- /data/countryflags/MM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MM.png -------------------------------------------------------------------------------- /data/countryflags/MN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MN.png -------------------------------------------------------------------------------- /data/countryflags/MO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MO.png -------------------------------------------------------------------------------- /data/countryflags/MP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MP.png -------------------------------------------------------------------------------- /data/countryflags/MQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MQ.png -------------------------------------------------------------------------------- /data/countryflags/MR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MR.png -------------------------------------------------------------------------------- /data/countryflags/MS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MS.png -------------------------------------------------------------------------------- /data/countryflags/MT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MT.png -------------------------------------------------------------------------------- /data/countryflags/MU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MU.png -------------------------------------------------------------------------------- /data/countryflags/MV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MV.png -------------------------------------------------------------------------------- /data/countryflags/MW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MW.png -------------------------------------------------------------------------------- /data/countryflags/MX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MX.png -------------------------------------------------------------------------------- /data/countryflags/MY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MY.png -------------------------------------------------------------------------------- /data/countryflags/MZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/MZ.png -------------------------------------------------------------------------------- /data/countryflags/NA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NA.png -------------------------------------------------------------------------------- /data/countryflags/NC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NC.png -------------------------------------------------------------------------------- /data/countryflags/NE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NE.png -------------------------------------------------------------------------------- /data/countryflags/NF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NF.png -------------------------------------------------------------------------------- /data/countryflags/NG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NG.png -------------------------------------------------------------------------------- /data/countryflags/NI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NI.png -------------------------------------------------------------------------------- /data/countryflags/NL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NL.png -------------------------------------------------------------------------------- /data/countryflags/NO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NO.png -------------------------------------------------------------------------------- /data/countryflags/NP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NP.png -------------------------------------------------------------------------------- /data/countryflags/NR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NR.png -------------------------------------------------------------------------------- /data/countryflags/NU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NU.png -------------------------------------------------------------------------------- /data/countryflags/NZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/NZ.png -------------------------------------------------------------------------------- /data/countryflags/OM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/OM.png -------------------------------------------------------------------------------- /data/countryflags/PA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PA.png -------------------------------------------------------------------------------- /data/countryflags/PE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PE.png -------------------------------------------------------------------------------- /data/countryflags/PF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PF.png -------------------------------------------------------------------------------- /data/countryflags/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PG.png -------------------------------------------------------------------------------- /data/countryflags/PH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PH.png -------------------------------------------------------------------------------- /data/countryflags/PK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PK.png -------------------------------------------------------------------------------- /data/countryflags/PL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PL.png -------------------------------------------------------------------------------- /data/countryflags/PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PM.png -------------------------------------------------------------------------------- /data/countryflags/PN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PN.png -------------------------------------------------------------------------------- /data/countryflags/PR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PR.png -------------------------------------------------------------------------------- /data/countryflags/PS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PS.png -------------------------------------------------------------------------------- /data/countryflags/PT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PT.png -------------------------------------------------------------------------------- /data/countryflags/PW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PW.png -------------------------------------------------------------------------------- /data/countryflags/PY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/PY.png -------------------------------------------------------------------------------- /data/countryflags/QA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/QA.png -------------------------------------------------------------------------------- /data/countryflags/RE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/RE.png -------------------------------------------------------------------------------- /data/countryflags/RO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/RO.png -------------------------------------------------------------------------------- /data/countryflags/RS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/RS.png -------------------------------------------------------------------------------- /data/countryflags/RU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/RU.png -------------------------------------------------------------------------------- /data/countryflags/RW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/RW.png -------------------------------------------------------------------------------- /data/countryflags/SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SA.png -------------------------------------------------------------------------------- /data/countryflags/SB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SB.png -------------------------------------------------------------------------------- /data/countryflags/SC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SC.png -------------------------------------------------------------------------------- /data/countryflags/SD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SD.png -------------------------------------------------------------------------------- /data/countryflags/SE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SE.png -------------------------------------------------------------------------------- /data/countryflags/SG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SG.png -------------------------------------------------------------------------------- /data/countryflags/SH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SH.png -------------------------------------------------------------------------------- /data/countryflags/SI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SI.png -------------------------------------------------------------------------------- /data/countryflags/SK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SK.png -------------------------------------------------------------------------------- /data/countryflags/SL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SL.png -------------------------------------------------------------------------------- /data/countryflags/SM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SM.png -------------------------------------------------------------------------------- /data/countryflags/SN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SN.png -------------------------------------------------------------------------------- /data/countryflags/SO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SO.png -------------------------------------------------------------------------------- /data/countryflags/SR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SR.png -------------------------------------------------------------------------------- /data/countryflags/SS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SS.png -------------------------------------------------------------------------------- /data/countryflags/ST.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ST.png -------------------------------------------------------------------------------- /data/countryflags/SV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SV.png -------------------------------------------------------------------------------- /data/countryflags/SX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SX.png -------------------------------------------------------------------------------- /data/countryflags/SY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SY.png -------------------------------------------------------------------------------- /data/countryflags/SZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/SZ.png -------------------------------------------------------------------------------- /data/countryflags/TC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TC.png -------------------------------------------------------------------------------- /data/countryflags/TD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TD.png -------------------------------------------------------------------------------- /data/countryflags/TF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TF.png -------------------------------------------------------------------------------- /data/countryflags/TG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TG.png -------------------------------------------------------------------------------- /data/countryflags/TH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TH.png -------------------------------------------------------------------------------- /data/countryflags/TJ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TJ.png -------------------------------------------------------------------------------- /data/countryflags/TK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TK.png -------------------------------------------------------------------------------- /data/countryflags/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TL.png -------------------------------------------------------------------------------- /data/countryflags/TM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TM.png -------------------------------------------------------------------------------- /data/countryflags/TN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TN.png -------------------------------------------------------------------------------- /data/countryflags/TO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TO.png -------------------------------------------------------------------------------- /data/countryflags/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TR.png -------------------------------------------------------------------------------- /data/countryflags/TT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TT.png -------------------------------------------------------------------------------- /data/countryflags/TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TV.png -------------------------------------------------------------------------------- /data/countryflags/TW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TW.png -------------------------------------------------------------------------------- /data/countryflags/TZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/TZ.png -------------------------------------------------------------------------------- /data/countryflags/UA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/UA.png -------------------------------------------------------------------------------- /data/countryflags/UG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/UG.png -------------------------------------------------------------------------------- /data/countryflags/US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/US.png -------------------------------------------------------------------------------- /data/countryflags/UY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/UY.png -------------------------------------------------------------------------------- /data/countryflags/UZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/UZ.png -------------------------------------------------------------------------------- /data/countryflags/VA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/VA.png -------------------------------------------------------------------------------- /data/countryflags/VC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/VC.png -------------------------------------------------------------------------------- /data/countryflags/VE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/VE.png -------------------------------------------------------------------------------- /data/countryflags/VG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/VG.png -------------------------------------------------------------------------------- /data/countryflags/VI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/VI.png -------------------------------------------------------------------------------- /data/countryflags/VN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/VN.png -------------------------------------------------------------------------------- /data/countryflags/VU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/VU.png -------------------------------------------------------------------------------- /data/countryflags/WF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/WF.png -------------------------------------------------------------------------------- /data/countryflags/WS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/WS.png -------------------------------------------------------------------------------- /data/countryflags/YE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/YE.png -------------------------------------------------------------------------------- /data/countryflags/ZA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ZA.png -------------------------------------------------------------------------------- /data/countryflags/ZM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ZM.png -------------------------------------------------------------------------------- /data/countryflags/ZW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/ZW.png -------------------------------------------------------------------------------- /data/countryflags/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/countryflags/default.png -------------------------------------------------------------------------------- /data/deadtee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/deadtee.png -------------------------------------------------------------------------------- /data/debug_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/debug_font.png -------------------------------------------------------------------------------- /data/editor/audio_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/audio_source.png -------------------------------------------------------------------------------- /data/editor/checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/checker.png -------------------------------------------------------------------------------- /data/editor/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/cursor.png -------------------------------------------------------------------------------- /data/editor/cursor_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/cursor_resize.png -------------------------------------------------------------------------------- /data/editor/entities/DDNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities/DDNet.png -------------------------------------------------------------------------------- /data/editor/entities/F-DDrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities/F-DDrace.png -------------------------------------------------------------------------------- /data/editor/entities/FNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities/FNG.png -------------------------------------------------------------------------------- /data/editor/entities/Race.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities/Race.png -------------------------------------------------------------------------------- /data/editor/entities/Vanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities/Vanilla.png -------------------------------------------------------------------------------- /data/editor/entities/blockworlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities/blockworlds.png -------------------------------------------------------------------------------- /data/editor/entities_clear/blockworlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities_clear/blockworlds.png -------------------------------------------------------------------------------- /data/editor/entities_clear/ddnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities_clear/ddnet.png -------------------------------------------------------------------------------- /data/editor/entities_clear/ddrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities_clear/ddrace.png -------------------------------------------------------------------------------- /data/editor/entities_clear/f-ddrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities_clear/f-ddrace.png -------------------------------------------------------------------------------- /data/editor/entities_clear/fng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities_clear/fng.png -------------------------------------------------------------------------------- /data/editor/entities_clear/race.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities_clear/race.png -------------------------------------------------------------------------------- /data/editor/entities_clear/vanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/entities_clear/vanilla.png -------------------------------------------------------------------------------- /data/editor/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/front.png -------------------------------------------------------------------------------- /data/editor/speed_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/speed_arrow.png -------------------------------------------------------------------------------- /data/editor/speed_arrow_array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/speed_arrow_array.png -------------------------------------------------------------------------------- /data/editor/speedup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/speedup.png -------------------------------------------------------------------------------- /data/editor/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/switch.png -------------------------------------------------------------------------------- /data/editor/tele.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/tele.png -------------------------------------------------------------------------------- /data/editor/tune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/editor/tune.png -------------------------------------------------------------------------------- /data/emoticons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/emoticons.png -------------------------------------------------------------------------------- /data/entity/fonts/Cabin-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/fonts/Cabin-Regular.ttf -------------------------------------------------------------------------------- /data/entity/fonts/ComicSansMS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/fonts/ComicSansMS.ttf -------------------------------------------------------------------------------- /data/entity/fonts/GoogleSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/fonts/GoogleSans-Regular.ttf -------------------------------------------------------------------------------- /data/entity/fonts/Inter_24pt-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/fonts/Inter_24pt-Regular.ttf -------------------------------------------------------------------------------- /data/entity/fonts/Inter_24pt-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/fonts/Inter_24pt-SemiBold.ttf -------------------------------------------------------------------------------- /data/entity/fonts/Minecraft_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/fonts/Minecraft_font.ttf -------------------------------------------------------------------------------- /data/entity/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /data/entity/fonts/Nunito-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/fonts/Nunito-Black.ttf -------------------------------------------------------------------------------- /data/entity/fonts/Rubik-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/fonts/Rubik-Regular.ttf -------------------------------------------------------------------------------- /data/entity/icons/entity_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/icons/entity_flag.png -------------------------------------------------------------------------------- /data/entity/icons/muted_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/icons/muted_icon.png -------------------------------------------------------------------------------- /data/entity/icons/settings_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/entity/icons/settings_icon.png -------------------------------------------------------------------------------- /data/extras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/extras.png -------------------------------------------------------------------------------- /data/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /data/fonts/Font_Awesome_6_Free-Solid-900.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/fonts/Font_Awesome_6_Free-Solid-900.otf -------------------------------------------------------------------------------- /data/fonts/GlowSansJ-Compressed-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/fonts/GlowSansJ-Compressed-Book.otf -------------------------------------------------------------------------------- /data/fonts/SourceHanSans.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/fonts/SourceHanSans.ttc -------------------------------------------------------------------------------- /data/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/game.png -------------------------------------------------------------------------------- /data/gui_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/gui_buttons.png -------------------------------------------------------------------------------- /data/gui_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/gui_cursor.png -------------------------------------------------------------------------------- /data/gui_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/gui_icons.png -------------------------------------------------------------------------------- /data/gui_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/gui_logo.png -------------------------------------------------------------------------------- /data/hud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/hud.png -------------------------------------------------------------------------------- /data/languages/license.txt: -------------------------------------------------------------------------------- 1 | All content is released under CC-BY-SA 3.0 (https://creativecommons.org/licenses/by-sa/3.0/). 2 | Information about the authors can be found within the according file. 3 | -------------------------------------------------------------------------------- /data/mapres/basic_freeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/basic_freeze.png -------------------------------------------------------------------------------- /data/mapres/bg_cloud1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/bg_cloud1.png -------------------------------------------------------------------------------- /data/mapres/bg_cloud2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/bg_cloud2.png -------------------------------------------------------------------------------- /data/mapres/bg_cloud3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/bg_cloud3.png -------------------------------------------------------------------------------- /data/mapres/ddmax_freeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/ddmax_freeze.png -------------------------------------------------------------------------------- /data/mapres/ddnet_grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/ddnet_grass.png -------------------------------------------------------------------------------- /data/mapres/ddnet_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/ddnet_start.png -------------------------------------------------------------------------------- /data/mapres/ddnet_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/ddnet_tiles.png -------------------------------------------------------------------------------- /data/mapres/ddnet_walls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/ddnet_walls.png -------------------------------------------------------------------------------- /data/mapres/desert_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/desert_background.png -------------------------------------------------------------------------------- /data/mapres/desert_doodads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/desert_doodads.png -------------------------------------------------------------------------------- /data/mapres/desert_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/desert_main.png -------------------------------------------------------------------------------- /data/mapres/desert_mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/desert_mountains.png -------------------------------------------------------------------------------- /data/mapres/desert_mountains2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/desert_mountains2.png -------------------------------------------------------------------------------- /data/mapres/desert_mountains_new_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/desert_mountains_new_background.png -------------------------------------------------------------------------------- /data/mapres/desert_mountains_new_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/desert_mountains_new_foreground.png -------------------------------------------------------------------------------- /data/mapres/desert_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/desert_sun.png -------------------------------------------------------------------------------- /data/mapres/entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/entities.png -------------------------------------------------------------------------------- /data/mapres/fadeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/fadeout.png -------------------------------------------------------------------------------- /data/mapres/font_teeworlds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/font_teeworlds.png -------------------------------------------------------------------------------- /data/mapres/font_teeworlds_alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/font_teeworlds_alt.png -------------------------------------------------------------------------------- /data/mapres/generic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/generic_clear.png -------------------------------------------------------------------------------- /data/mapres/generic_deathtiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/generic_deathtiles.png -------------------------------------------------------------------------------- /data/mapres/generic_lamps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/generic_lamps.png -------------------------------------------------------------------------------- /data/mapres/generic_shadows_0.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/generic_shadows_0.7.png -------------------------------------------------------------------------------- /data/mapres/generic_unhookable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/generic_unhookable.png -------------------------------------------------------------------------------- /data/mapres/generic_unhookable_0.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/generic_unhookable_0.7.png -------------------------------------------------------------------------------- /data/mapres/grass_doodads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/grass_doodads.png -------------------------------------------------------------------------------- /data/mapres/grass_doodads_0.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/grass_doodads_0.7.png -------------------------------------------------------------------------------- /data/mapres/grass_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/grass_main.png -------------------------------------------------------------------------------- /data/mapres/grass_main_0.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/grass_main_0.7.png -------------------------------------------------------------------------------- /data/mapres/jungle_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/jungle_background.png -------------------------------------------------------------------------------- /data/mapres/jungle_deathtiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/jungle_deathtiles.png -------------------------------------------------------------------------------- /data/mapres/jungle_doodads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/jungle_doodads.png -------------------------------------------------------------------------------- /data/mapres/jungle_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/jungle_main.png -------------------------------------------------------------------------------- /data/mapres/jungle_midground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/jungle_midground.png -------------------------------------------------------------------------------- /data/mapres/jungle_unhookables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/jungle_unhookables.png -------------------------------------------------------------------------------- /data/mapres/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/light.png -------------------------------------------------------------------------------- /data/mapres/mixed_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/mixed_tiles.png -------------------------------------------------------------------------------- /data/mapres/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/moon.png -------------------------------------------------------------------------------- /data/mapres/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/mountains.png -------------------------------------------------------------------------------- /data/mapres/round_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/round_tiles.png -------------------------------------------------------------------------------- /data/mapres/snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/snow.png -------------------------------------------------------------------------------- /data/mapres/snow_mountain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/snow_mountain.png -------------------------------------------------------------------------------- /data/mapres/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/stars.png -------------------------------------------------------------------------------- /data/mapres/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/sun.png -------------------------------------------------------------------------------- /data/mapres/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/water.png -------------------------------------------------------------------------------- /data/mapres/winter_doodads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/winter_doodads.png -------------------------------------------------------------------------------- /data/mapres/winter_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/winter_main.png -------------------------------------------------------------------------------- /data/mapres/winter_main_0.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/winter_main_0.7.png -------------------------------------------------------------------------------- /data/mapres/winter_mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/winter_mountains.png -------------------------------------------------------------------------------- /data/mapres/winter_mountains2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/winter_mountains2.png -------------------------------------------------------------------------------- /data/mapres/winter_mountains3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/mapres/winter_mountains3.png -------------------------------------------------------------------------------- /data/maps/Gold Mine.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/Gold Mine.map -------------------------------------------------------------------------------- /data/maps/LearnToPlay.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/LearnToPlay.map -------------------------------------------------------------------------------- /data/maps/Sunny Side Up.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/Sunny Side Up.map -------------------------------------------------------------------------------- /data/maps/Tsunami.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/Tsunami.map -------------------------------------------------------------------------------- /data/maps/Tutorial.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/Tutorial.map -------------------------------------------------------------------------------- /data/maps/coverage.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/coverage.map -------------------------------------------------------------------------------- /data/maps/ctf1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/ctf1.map -------------------------------------------------------------------------------- /data/maps/ctf2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/ctf2.map -------------------------------------------------------------------------------- /data/maps/ctf3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/ctf3.map -------------------------------------------------------------------------------- /data/maps/ctf4.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/ctf4.map -------------------------------------------------------------------------------- /data/maps/ctf5.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/ctf5.map -------------------------------------------------------------------------------- /data/maps/ctf6.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/ctf6.map -------------------------------------------------------------------------------- /data/maps/ctf7.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/ctf7.map -------------------------------------------------------------------------------- /data/maps/dm1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/dm1.map -------------------------------------------------------------------------------- /data/maps/dm2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/dm2.map -------------------------------------------------------------------------------- /data/maps/dm6.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/dm6.map -------------------------------------------------------------------------------- /data/maps/dm7.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/dm7.map -------------------------------------------------------------------------------- /data/maps/dm8.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/dm8.map -------------------------------------------------------------------------------- /data/maps/dm9.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps/dm9.map -------------------------------------------------------------------------------- /data/maps7/Gold Mine.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps7/Gold Mine.map -------------------------------------------------------------------------------- /data/maps7/LearnToPlay.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps7/LearnToPlay.map -------------------------------------------------------------------------------- /data/maps7/Sunny Side Up.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps7/Sunny Side Up.map -------------------------------------------------------------------------------- /data/maps7/Tsunami.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps7/Tsunami.map -------------------------------------------------------------------------------- /data/maps7/Tutorial.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/maps7/Tutorial.map -------------------------------------------------------------------------------- /data/maps7/readme.txt: -------------------------------------------------------------------------------- 1 | Maps in this directory are created using the map_convert_07 tool for 2 | server compatibility with Teeworlds 0.7 clients 3 | -------------------------------------------------------------------------------- /data/menuimages/demos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/menuimages/demos.png -------------------------------------------------------------------------------- /data/menuimages/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/menuimages/editor.png -------------------------------------------------------------------------------- /data/menuimages/local_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/menuimages/local_server.png -------------------------------------------------------------------------------- /data/menuimages/play_game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/menuimages/play_game.png -------------------------------------------------------------------------------- /data/menuimages/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/menuimages/settings.png -------------------------------------------------------------------------------- /data/particles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/particles.png -------------------------------------------------------------------------------- /data/race_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/race_flag.png -------------------------------------------------------------------------------- /data/skins/PaladiN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/PaladiN.png -------------------------------------------------------------------------------- /data/skins/antiantey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/antiantey.png -------------------------------------------------------------------------------- /data/skins/beast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/beast.png -------------------------------------------------------------------------------- /data/skins/blacktee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/blacktee.png -------------------------------------------------------------------------------- /data/skins/bluekitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/bluekitty.png -------------------------------------------------------------------------------- /data/skins/bluestripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/bluestripe.png -------------------------------------------------------------------------------- /data/skins/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/bomb.png -------------------------------------------------------------------------------- /data/skins/brownbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/brownbear.png -------------------------------------------------------------------------------- /data/skins/cammo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/cammo.png -------------------------------------------------------------------------------- /data/skins/cammostripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/cammostripes.png -------------------------------------------------------------------------------- /data/skins/catnoa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/catnoa.png -------------------------------------------------------------------------------- /data/skins/chinese_by_whis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/chinese_by_whis.png -------------------------------------------------------------------------------- /data/skins/coala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala.png -------------------------------------------------------------------------------- /data/skins/coala_bluekitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_bluekitty.png -------------------------------------------------------------------------------- /data/skins/coala_bluestripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_bluestripe.png -------------------------------------------------------------------------------- /data/skins/coala_cammo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_cammo.png -------------------------------------------------------------------------------- /data/skins/coala_cammostripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_cammostripes.png -------------------------------------------------------------------------------- /data/skins/coala_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_default.png -------------------------------------------------------------------------------- /data/skins/coala_limekitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_limekitty.png -------------------------------------------------------------------------------- /data/skins/coala_pinky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_pinky.png -------------------------------------------------------------------------------- /data/skins/coala_redbopp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_redbopp.png -------------------------------------------------------------------------------- /data/skins/coala_redstripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_redstripe.png -------------------------------------------------------------------------------- /data/skins/coala_saddo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_saddo.png -------------------------------------------------------------------------------- /data/skins/coala_toptri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_toptri.png -------------------------------------------------------------------------------- /data/skins/coala_twinbop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_twinbop.png -------------------------------------------------------------------------------- /data/skins/coala_twintri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_twintri.png -------------------------------------------------------------------------------- /data/skins/coala_warpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_warpaint.png -------------------------------------------------------------------------------- /data/skins/coala_x_ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/coala_x_ninja.png -------------------------------------------------------------------------------- /data/skins/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/default.png -------------------------------------------------------------------------------- /data/skins/demonlimekitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/demonlimekitty.png -------------------------------------------------------------------------------- /data/skins/dino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/dino.png -------------------------------------------------------------------------------- /data/skins/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/dragon.png -------------------------------------------------------------------------------- /data/skins/evil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/evil.png -------------------------------------------------------------------------------- /data/skins/evilwolfe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/evilwolfe.png -------------------------------------------------------------------------------- /data/skins/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/ghost.png -------------------------------------------------------------------------------- /data/skins/ghostjtj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/ghostjtj.png -------------------------------------------------------------------------------- /data/skins/giraffe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/giraffe.png -------------------------------------------------------------------------------- /data/skins/greensward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/greensward.png -------------------------------------------------------------------------------- /data/skins/greyfox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/greyfox.png -------------------------------------------------------------------------------- /data/skins/greyfox_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/greyfox_2.png -------------------------------------------------------------------------------- /data/skins/hammie-chew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/hammie-chew.png -------------------------------------------------------------------------------- /data/skins/hammie-whis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/hammie-whis.png -------------------------------------------------------------------------------- /data/skins/jeet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/jeet.png -------------------------------------------------------------------------------- /data/skins/kintaro_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kintaro_2.png -------------------------------------------------------------------------------- /data/skins/kitty_bluestripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_bluestripe.png -------------------------------------------------------------------------------- /data/skins/kitty_brownbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_brownbear.png -------------------------------------------------------------------------------- /data/skins/kitty_cammo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_cammo.png -------------------------------------------------------------------------------- /data/skins/kitty_cammostripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_cammostripes.png -------------------------------------------------------------------------------- /data/skins/kitty_coala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_coala.png -------------------------------------------------------------------------------- /data/skins/kitty_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_default.png -------------------------------------------------------------------------------- /data/skins/kitty_pinky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_pinky.png -------------------------------------------------------------------------------- /data/skins/kitty_redbopp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_redbopp.png -------------------------------------------------------------------------------- /data/skins/kitty_redstripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_redstripe.png -------------------------------------------------------------------------------- /data/skins/kitty_saddo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_saddo.png -------------------------------------------------------------------------------- /data/skins/kitty_toptri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_toptri.png -------------------------------------------------------------------------------- /data/skins/kitty_twinbop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_twinbop.png -------------------------------------------------------------------------------- /data/skins/kitty_twintri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_twintri.png -------------------------------------------------------------------------------- /data/skins/kitty_warpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_warpaint.png -------------------------------------------------------------------------------- /data/skins/kitty_x_ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/kitty_x_ninja.png -------------------------------------------------------------------------------- /data/skins/limekitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/limekitty.png -------------------------------------------------------------------------------- /data/skins/mermydon-coala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/mermydon-coala.png -------------------------------------------------------------------------------- /data/skins/mermydon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/mermydon.png -------------------------------------------------------------------------------- /data/skins/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/mouse.png -------------------------------------------------------------------------------- /data/skins/musmann.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/musmann.png -------------------------------------------------------------------------------- /data/skins/nanami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/nanami.png -------------------------------------------------------------------------------- /data/skins/nanas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/nanas.png -------------------------------------------------------------------------------- /data/skins/nersif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/nersif.png -------------------------------------------------------------------------------- /data/skins/oldman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/oldman.png -------------------------------------------------------------------------------- /data/skins/oldschool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/oldschool.png -------------------------------------------------------------------------------- /data/skins/penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/penguin.png -------------------------------------------------------------------------------- /data/skins/pinky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/pinky.png -------------------------------------------------------------------------------- /data/skins/random.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/random.png -------------------------------------------------------------------------------- /data/skins/redbopp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/redbopp.png -------------------------------------------------------------------------------- /data/skins/redstripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/redstripe.png -------------------------------------------------------------------------------- /data/skins/saddo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/saddo.png -------------------------------------------------------------------------------- /data/skins/santa_bluekitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_bluekitty.png -------------------------------------------------------------------------------- /data/skins/santa_bluestripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_bluestripe.png -------------------------------------------------------------------------------- /data/skins/santa_brownbear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_brownbear.png -------------------------------------------------------------------------------- /data/skins/santa_cammo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_cammo.png -------------------------------------------------------------------------------- /data/skins/santa_cammostripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_cammostripes.png -------------------------------------------------------------------------------- /data/skins/santa_coala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_coala.png -------------------------------------------------------------------------------- /data/skins/santa_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_default.png -------------------------------------------------------------------------------- /data/skins/santa_limekitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_limekitty.png -------------------------------------------------------------------------------- /data/skins/santa_pinky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_pinky.png -------------------------------------------------------------------------------- /data/skins/santa_redbopp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_redbopp.png -------------------------------------------------------------------------------- /data/skins/santa_redstripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_redstripe.png -------------------------------------------------------------------------------- /data/skins/santa_saddo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_saddo.png -------------------------------------------------------------------------------- /data/skins/santa_toptri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_toptri.png -------------------------------------------------------------------------------- /data/skins/santa_twinbop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_twinbop.png -------------------------------------------------------------------------------- /data/skins/santa_twintri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_twintri.png -------------------------------------------------------------------------------- /data/skins/santa_warpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/santa_warpaint.png -------------------------------------------------------------------------------- /data/skins/teerasta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/teerasta.png -------------------------------------------------------------------------------- /data/skins/toptri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/toptri.png -------------------------------------------------------------------------------- /data/skins/twinbop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/twinbop.png -------------------------------------------------------------------------------- /data/skins/twintri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/twintri.png -------------------------------------------------------------------------------- /data/skins/veteran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/veteran.png -------------------------------------------------------------------------------- /data/skins/voodoo_tee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/voodoo_tee.png -------------------------------------------------------------------------------- /data/skins/warpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/warpaint.png -------------------------------------------------------------------------------- /data/skins/wartee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/wartee.png -------------------------------------------------------------------------------- /data/skins/whis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/whis.png -------------------------------------------------------------------------------- /data/skins/x_ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/x_ninja.png -------------------------------------------------------------------------------- /data/skins/x_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins/x_spec.png -------------------------------------------------------------------------------- /data/skins7/body/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/bat.png -------------------------------------------------------------------------------- /data/skins7/body/bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/bear.png -------------------------------------------------------------------------------- /data/skins7/body/beaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/beaver.png -------------------------------------------------------------------------------- /data/skins7/body/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/dog.png -------------------------------------------------------------------------------- /data/skins7/body/force.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/force.png -------------------------------------------------------------------------------- /data/skins7/body/fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/fox.png -------------------------------------------------------------------------------- /data/skins7/body/greensward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/greensward.png -------------------------------------------------------------------------------- /data/skins7/body/hippo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/hippo.png -------------------------------------------------------------------------------- /data/skins7/body/kitty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/kitty.png -------------------------------------------------------------------------------- /data/skins7/body/koala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/koala.png -------------------------------------------------------------------------------- /data/skins7/body/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/monkey.png -------------------------------------------------------------------------------- /data/skins7/body/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/mouse.png -------------------------------------------------------------------------------- /data/skins7/body/piglet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/piglet.png -------------------------------------------------------------------------------- /data/skins7/body/raccoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/raccoon.png -------------------------------------------------------------------------------- /data/skins7/body/spiky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/spiky.png -------------------------------------------------------------------------------- /data/skins7/body/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/standard.png -------------------------------------------------------------------------------- /data/skins7/body/x_ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/body/x_ninja.png -------------------------------------------------------------------------------- /data/skins7/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/bot.png -------------------------------------------------------------------------------- /data/skins7/decoration/hair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/decoration/hair.png -------------------------------------------------------------------------------- /data/skins7/decoration/twinbopp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/decoration/twinbopp.png -------------------------------------------------------------------------------- /data/skins7/decoration/twinmello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/decoration/twinmello.png -------------------------------------------------------------------------------- /data/skins7/decoration/twinpen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/decoration/twinpen.png -------------------------------------------------------------------------------- /data/skins7/decoration/unibop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/decoration/unibop.png -------------------------------------------------------------------------------- /data/skins7/decoration/unimelo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/decoration/unimelo.png -------------------------------------------------------------------------------- /data/skins7/decoration/unipento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/decoration/unipento.png -------------------------------------------------------------------------------- /data/skins7/eyes/colorable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/eyes/colorable.png -------------------------------------------------------------------------------- /data/skins7/eyes/negative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/eyes/negative.png -------------------------------------------------------------------------------- /data/skins7/eyes/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/eyes/standard.png -------------------------------------------------------------------------------- /data/skins7/eyes/standardreal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/eyes/standardreal.png -------------------------------------------------------------------------------- /data/skins7/eyes/x_ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/eyes/x_ninja.png -------------------------------------------------------------------------------- /data/skins7/feet/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/feet/standard.png -------------------------------------------------------------------------------- /data/skins7/hands/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/hands/standard.png -------------------------------------------------------------------------------- /data/skins7/marking/bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/bear.png -------------------------------------------------------------------------------- /data/skins7/marking/belly1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/belly1.png -------------------------------------------------------------------------------- /data/skins7/marking/belly2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/belly2.png -------------------------------------------------------------------------------- /data/skins7/marking/blush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/blush.png -------------------------------------------------------------------------------- /data/skins7/marking/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/bug.png -------------------------------------------------------------------------------- /data/skins7/marking/cammo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/cammo1.png -------------------------------------------------------------------------------- /data/skins7/marking/cammo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/cammo2.png -------------------------------------------------------------------------------- /data/skins7/marking/cammostripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/cammostripes.png -------------------------------------------------------------------------------- /data/skins7/marking/coonfluff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/coonfluff.png -------------------------------------------------------------------------------- /data/skins7/marking/donny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/donny.png -------------------------------------------------------------------------------- /data/skins7/marking/downdony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/downdony.png -------------------------------------------------------------------------------- /data/skins7/marking/duodonny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/duodonny.png -------------------------------------------------------------------------------- /data/skins7/marking/fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/fox.png -------------------------------------------------------------------------------- /data/skins7/marking/hipbel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/hipbel.png -------------------------------------------------------------------------------- /data/skins7/marking/lowcross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/lowcross.png -------------------------------------------------------------------------------- /data/skins7/marking/lowpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/lowpaint.png -------------------------------------------------------------------------------- /data/skins7/marking/marksman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/marksman.png -------------------------------------------------------------------------------- /data/skins7/marking/mice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/mice.png -------------------------------------------------------------------------------- /data/skins7/marking/mixture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/mixture1.png -------------------------------------------------------------------------------- /data/skins7/marking/mixture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/mixture2.png -------------------------------------------------------------------------------- /data/skins7/marking/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/monkey.png -------------------------------------------------------------------------------- /data/skins7/marking/panda1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/panda1.png -------------------------------------------------------------------------------- /data/skins7/marking/panda2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/panda2.png -------------------------------------------------------------------------------- /data/skins7/marking/purelove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/purelove.png -------------------------------------------------------------------------------- /data/skins7/marking/saddo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/saddo.png -------------------------------------------------------------------------------- /data/skins7/marking/setisu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/setisu.png -------------------------------------------------------------------------------- /data/skins7/marking/sidemarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/sidemarks.png -------------------------------------------------------------------------------- /data/skins7/marking/singu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/singu.png -------------------------------------------------------------------------------- /data/skins7/marking/stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/stripe.png -------------------------------------------------------------------------------- /data/skins7/marking/striped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/striped.png -------------------------------------------------------------------------------- /data/skins7/marking/stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/stripes.png -------------------------------------------------------------------------------- /data/skins7/marking/stripes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/stripes2.png -------------------------------------------------------------------------------- /data/skins7/marking/thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/thunder.png -------------------------------------------------------------------------------- /data/skins7/marking/tiger1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/tiger1.png -------------------------------------------------------------------------------- /data/skins7/marking/tiger2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/tiger2.png -------------------------------------------------------------------------------- /data/skins7/marking/toptri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/toptri.png -------------------------------------------------------------------------------- /data/skins7/marking/triangular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/triangular.png -------------------------------------------------------------------------------- /data/skins7/marking/tricircular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/tricircular.png -------------------------------------------------------------------------------- /data/skins7/marking/tripledon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/tripledon.png -------------------------------------------------------------------------------- /data/skins7/marking/tritri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/tritri.png -------------------------------------------------------------------------------- /data/skins7/marking/twinbelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/twinbelly.png -------------------------------------------------------------------------------- /data/skins7/marking/twincross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/twincross.png -------------------------------------------------------------------------------- /data/skins7/marking/twintri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/twintri.png -------------------------------------------------------------------------------- /data/skins7/marking/uppy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/uppy.png -------------------------------------------------------------------------------- /data/skins7/marking/warpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/warpaint.png -------------------------------------------------------------------------------- /data/skins7/marking/warstripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/warstripes.png -------------------------------------------------------------------------------- /data/skins7/marking/whisker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/whisker.png -------------------------------------------------------------------------------- /data/skins7/marking/wildpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/wildpaint.png -------------------------------------------------------------------------------- /data/skins7/marking/wildpatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/wildpatch.png -------------------------------------------------------------------------------- /data/skins7/marking/yinyang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/marking/yinyang.png -------------------------------------------------------------------------------- /data/skins7/xmas_hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/skins7/xmas_hat.png -------------------------------------------------------------------------------- /data/strong_weak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/strong_weak.png -------------------------------------------------------------------------------- /data/themes/auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/auto.png -------------------------------------------------------------------------------- /data/themes/autumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/autumn.png -------------------------------------------------------------------------------- /data/themes/autumn_day.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/autumn_day.map -------------------------------------------------------------------------------- /data/themes/autumn_night.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/autumn_night.map -------------------------------------------------------------------------------- /data/themes/heavens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/heavens.png -------------------------------------------------------------------------------- /data/themes/heavens_day.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/heavens_day.map -------------------------------------------------------------------------------- /data/themes/heavens_night.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/heavens_night.map -------------------------------------------------------------------------------- /data/themes/jungle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/jungle.png -------------------------------------------------------------------------------- /data/themes/jungle_day.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/jungle_day.map -------------------------------------------------------------------------------- /data/themes/jungle_night.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/jungle_night.map -------------------------------------------------------------------------------- /data/themes/newyear.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/newyear.map -------------------------------------------------------------------------------- /data/themes/newyear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/newyear.png -------------------------------------------------------------------------------- /data/themes/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/none.png -------------------------------------------------------------------------------- /data/themes/rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/rand.png -------------------------------------------------------------------------------- /data/themes/winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/winter.png -------------------------------------------------------------------------------- /data/themes/winter_day.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/winter_day.map -------------------------------------------------------------------------------- /data/themes/winter_night.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/data/themes/winter_night.map -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- 1 | [licenses] 2 | allow = [ 3 | "Apache-2.0", 4 | "MIT", 5 | "Zlib" 6 | ] 7 | -------------------------------------------------------------------------------- /lsan.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/lsan.supp -------------------------------------------------------------------------------- /other/bundle/client/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /other/bundle/server/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /other/dmgbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/dmgbackground.png -------------------------------------------------------------------------------- /other/icons/DDNet-Server.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet-Server.icns -------------------------------------------------------------------------------- /other/icons/DDNet-Server.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet-Server.ico -------------------------------------------------------------------------------- /other/icons/DDNet-Server.rc: -------------------------------------------------------------------------------- 1 | ID ICON "DDNet-Server.ico" 2 | -------------------------------------------------------------------------------- /other/icons/DDNet-Server_16x16x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet-Server_16x16x32.png -------------------------------------------------------------------------------- /other/icons/DDNet-Server_256x256x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet-Server_256x256x32.png -------------------------------------------------------------------------------- /other/icons/DDNet-Server_32x32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet-Server_32x32x32.png -------------------------------------------------------------------------------- /other/icons/DDNet-Server_48x48x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet-Server_48x48x32.png -------------------------------------------------------------------------------- /other/icons/DDNet.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet.aps -------------------------------------------------------------------------------- /other/icons/DDNet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet.icns -------------------------------------------------------------------------------- /other/icons/DDNet.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet.ico -------------------------------------------------------------------------------- /other/icons/DDNet.rc: -------------------------------------------------------------------------------- 1 | ID ICON "DDNet.ico" 2 | -------------------------------------------------------------------------------- /other/icons/DDNet_16x16x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet_16x16x32.png -------------------------------------------------------------------------------- /other/icons/DDNet_256x256x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet_256x256x32.png -------------------------------------------------------------------------------- /other/icons/DDNet_32x32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet_32x32x32.png -------------------------------------------------------------------------------- /other/icons/DDNet_48x48x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/other/icons/DDNet_48x48x32.png -------------------------------------------------------------------------------- /other/icons/license.txt: -------------------------------------------------------------------------------- 1 | Icons by Ravie 2 | -------------------------------------------------------------------------------- /other/manifest/client.rc: -------------------------------------------------------------------------------- 1 | #include "winuser.h" 2 | 1 RT_MANIFEST client.manifest 3 | -------------------------------------------------------------------------------- /other/vim/ftdetect/ddnet-cfg.vim: -------------------------------------------------------------------------------- 1 | autocmd BufRead,BufNewFile settings_ddnet.cfg set filetype=ddnet-cfg 2 | -------------------------------------------------------------------------------- /scripts/android/files/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='DDNet' 2 | -------------------------------------------------------------------------------- /src/base/.clang-tidy: -------------------------------------------------------------------------------- 1 | Checks: '-readability-identifier-naming' 2 | -------------------------------------------------------------------------------- /src/base/rust.h: -------------------------------------------------------------------------------- 1 | #ifndef BASE_RUST_H 2 | #define BASE_RUST_H 3 | typedef const char *StrRef; 4 | typedef void *UserPtr; 5 | #endif // BASE_RUST_H 6 | -------------------------------------------------------------------------------- /src/base/unicode/VERSION.txt: -------------------------------------------------------------------------------- 1 | 15.0.0 2 | -------------------------------------------------------------------------------- /src/engine/external/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | # clang-format bug: still sorts includes even if disabled 3 | SortIncludes: false 4 | -------------------------------------------------------------------------------- /src/engine/external/glew/VERSION.txt: -------------------------------------------------------------------------------- 1 | 2.1.0 2 | -------------------------------------------------------------------------------- /src/engine/external/json-parser/VERSION.txt: -------------------------------------------------------------------------------- 1 | 1.1.0 2 | -------------------------------------------------------------------------------- /src/engine/external/wavpack/VERSION.txt: -------------------------------------------------------------------------------- 1 | Tiny Decoder 4.40 2 | -------------------------------------------------------------------------------- /src/engine/external/zlib/VERSION.txt: -------------------------------------------------------------------------------- 1 | 1.3.1 2 | -------------------------------------------------------------------------------- /src/engine/uuid.h: -------------------------------------------------------------------------------- 1 | #ifndef ENGINE_UUID_H 2 | #define ENGINE_UUID_H 3 | #include 4 | 5 | void RegisterGameUuids(CUuidManager *pManager); 6 | #endif // ENGINE_UUID_H 7 | -------------------------------------------------------------------------------- /src/game/mapbugs_list.h: -------------------------------------------------------------------------------- 1 | // This file can be included several times. 2 | 3 | MAPBUG(BUG_GRENADE_DOUBLEEXPLOSION, "grenade-doubleexplosion@ddnet.tw") 4 | -------------------------------------------------------------------------------- /steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxdFox/Entity-Client-DDNet/91adb80557c4a66c91034c0b75fd4c84b283b575/steam_api.dll -------------------------------------------------------------------------------- /steam_appid.txt: -------------------------------------------------------------------------------- 1 | 412220 2 | -------------------------------------------------------------------------------- /ubsan.supp: -------------------------------------------------------------------------------- 1 | null:json.c 2 | pointer-overflow:json.c 3 | --------------------------------------------------------------------------------