├── .clang-format ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Android.mk ├── CMakeLists.txt ├── CONTRIBUTING.md ├── COPYING ├── README.md ├── appveyor.yml ├── cmake ├── FWGSLib.cmake ├── FindSDL2.cmake ├── FindVGUI.cmake └── VSForceXPToolchain.cmake ├── common ├── backends.h ├── beamdef.h ├── bspfile.h ├── cl_entity.h ├── com_model.h ├── con_nprint.h ├── const.h ├── cvardef.h ├── defaults.h ├── demo_api.h ├── dlight.h ├── engine_features.h ├── entity_state.h ├── entity_types.h ├── event_api.h ├── event_args.h ├── event_flags.h ├── gameinfo.h ├── hltv.h ├── ivoicetweak.h ├── kbutton.h ├── lightstyle.h ├── mathlib.h ├── net_api.h ├── netadr.h ├── particledef.h ├── pmtrace.h ├── port.h ├── qfont.h ├── r_efx.h ├── r_studioint.h ├── ref_params.h ├── render_api.h ├── screenfade.h ├── studio_event.h ├── triangleapi.h ├── usercmd.h ├── wadfile.h ├── weaponinfo.h ├── wrect.h └── xash3d_types.h ├── contrib └── mittorn │ ├── Makefile.dllloader │ ├── Makefile.emscripten │ ├── Makefile.linux │ ├── Makefile.mingw │ ├── README.md │ ├── setup.bat │ └── setup.sh ├── engine ├── Android.mk ├── CMakeLists.txt ├── Sequence.h ├── anorms.h ├── cdll_exp.h ├── cdll_int.h ├── client │ ├── anorm_dots.h │ ├── cl_cmds.c │ ├── cl_demo.c │ ├── cl_events.c │ ├── cl_frame.c │ ├── cl_game.c │ ├── cl_main.c │ ├── cl_menu.c │ ├── cl_mobile.c │ ├── cl_netgraph.c │ ├── cl_parse.c │ ├── cl_pmove.c │ ├── cl_remap.c │ ├── cl_scrn.c │ ├── cl_tent.c │ ├── cl_tent.h │ ├── cl_video.c │ ├── cl_view.c │ ├── client.h │ ├── console.c │ ├── gamma.c │ ├── gl_backend.c │ ├── gl_beams.c │ ├── gl_cull.c │ ├── gl_decals.c │ ├── gl_draw.c │ ├── gl_dynamic.h │ ├── gl_export.h │ ├── gl_image.c │ ├── gl_local.h │ ├── gl_mirror.c │ ├── gl_refrag.c │ ├── gl_rlight.c │ ├── gl_rmain.c │ ├── gl_rmath.c │ ├── gl_rmisc.c │ ├── gl_rpart.c │ ├── gl_rstrobe.c │ ├── gl_rsurf.c │ ├── gl_sprite.c │ ├── gl_static.h │ ├── gl_studio.c │ ├── gl_vidnt.h │ ├── gl_warp.c │ ├── input.c │ ├── input.h │ ├── input_evdevkey.c │ ├── joyinput.c │ ├── joyinput.h │ ├── keys.c │ ├── s_dsp.c │ ├── s_load.c │ ├── s_main.c │ ├── s_mix.c │ ├── s_mouth.c │ ├── s_stream.c │ ├── s_stub.c │ ├── s_utils.c │ ├── s_vox.c │ ├── sound.h │ ├── touch.c │ ├── touch.h │ ├── vgui │ │ ├── vgui_draw.c │ │ └── vgui_draw.h │ ├── vid_common.c │ └── vox.h ├── common │ ├── Sequence.c │ ├── avikit.c │ ├── base_cmd.c │ ├── base_cmd.h │ ├── build.c │ ├── cfgscript.c │ ├── cmd.c │ ├── common.c │ ├── common.h │ ├── con_utils.c │ ├── crashhandler.c │ ├── crclib.c │ ├── crtlib.c │ ├── crtlib.h │ ├── crtlib_inline.h │ ├── cvar.c │ ├── dedicated.c │ ├── filesystem.c │ ├── filesystem.h │ ├── host.c │ ├── hpak.c │ ├── identification.c │ ├── imagelib │ │ ├── imagelib.h │ │ ├── img_bmp.c │ │ ├── img_dds.c │ │ ├── img_main.c │ │ ├── img_quant.c │ │ ├── img_tga.c │ │ ├── img_utils.c │ │ └── img_wad.c │ ├── infostring.c │ ├── launcher.c │ ├── library.c │ ├── library.h │ ├── masterlist.c │ ├── mathlib.c │ ├── mathlib.h │ ├── matrixlib.c │ ├── mod_local.h │ ├── mod_studio.c │ ├── model.c │ ├── neon_mathfun.h │ ├── net_buffer.c │ ├── net_buffer.h │ ├── net_chan.c │ ├── net_encode.c │ ├── net_encode.h │ ├── net_huff.c │ ├── netchan.h │ ├── network.c │ ├── pm_local.h │ ├── pm_surface.c │ ├── pm_trace.c │ ├── protocol.h │ ├── random.c │ ├── soundlib │ │ ├── libmpg │ │ │ ├── dct36.c │ │ │ ├── dct64.c │ │ │ ├── fmt123.h │ │ │ ├── format.c │ │ │ ├── frame.c │ │ │ ├── frame.h │ │ │ ├── getbits.h │ │ │ ├── huffman.h │ │ │ ├── index.c │ │ │ ├── index.h │ │ │ ├── layer3.c │ │ │ ├── libmpg.c │ │ │ ├── libmpg.dsp │ │ │ ├── libmpg.h │ │ │ ├── mpeghead.h │ │ │ ├── mpg123.c │ │ │ ├── mpg123.h │ │ │ ├── parse.c │ │ │ ├── reader.c │ │ │ ├── reader.h │ │ │ ├── sample.h │ │ │ ├── synth.c │ │ │ ├── synth.h │ │ │ └── tabinit.c │ │ ├── snd_main.c │ │ ├── snd_mp3.c │ │ ├── snd_utils.c │ │ ├── snd_wav.c │ │ └── soundlib.h │ ├── sse_mathfun.h │ ├── stb │ │ └── stb_sprintf.h │ ├── sys_con.c │ ├── system.c │ ├── system.h │ ├── titles.c │ ├── world.c │ ├── world.h │ └── zone.c ├── custom.h ├── customentity.h ├── edict.h ├── eiface.h ├── fs_int.h ├── keydefs.h ├── menu_int.h ├── mobility_int.h ├── physint.h ├── platform │ ├── android │ │ ├── android-main.h │ │ ├── android_nosdl.c │ │ ├── dlsym-weak.cpp │ │ ├── dlsym-weak.h │ │ ├── linker.h │ │ ├── snd_opensles.c │ │ └── vid_android.c │ ├── emscripten │ │ ├── mods.js.example │ │ ├── shell.html │ │ └── unaligned.txt │ ├── sdl │ │ ├── events.c │ │ ├── events.h │ │ ├── gl_sdl.c │ │ ├── snd_sdl.c │ │ └── vid_sdl.c │ └── win32 │ │ └── con_win.c ├── progdefs.h ├── server │ ├── server.h │ ├── sv_client.c │ ├── sv_cmds.c │ ├── sv_custom.c │ ├── sv_filter.c │ ├── sv_frame.c │ ├── sv_game.c │ ├── sv_init.c │ ├── sv_log.c │ ├── sv_main.c │ ├── sv_move.c │ ├── sv_phys.c │ ├── sv_pmove.c │ ├── sv_save.c │ └── sv_world.c ├── shake.h ├── sprite.h ├── studio.h ├── vgui_api.h └── warpsin.h ├── game_launch ├── CMakeLists.txt ├── game.rc ├── icon-gyllenkilde-material.ico ├── icon-gyllenkilde-material.png ├── icon-xash-material.ico ├── icon-xash-material.png └── xash.c ├── loader ├── 1.py ├── CMakeLists.txt ├── com.h ├── config.h ├── debug.h ├── elfdll.c ├── ext.c ├── ext.h ├── gldef.in ├── glfuncs.inc ├── glvars.h ├── glvars.inc ├── ldt_keeper.c ├── ldt_keeper.h ├── loader.c ├── loader.h ├── mangle.h ├── mmap_anon.c ├── mmap_anon.h ├── module.c ├── pe_image.c ├── pe_resource.c ├── registry.c ├── registry.h ├── resource.c ├── win32.c ├── win32.h ├── wine │ ├── avifmt.h │ ├── basetsd.h │ ├── debugtools.h │ ├── driver.h │ ├── elfdll.h │ ├── heap.h │ ├── ldt.h │ ├── mmreg.h │ ├── module.h │ ├── msacm.h │ ├── msacmdrv.h │ ├── ntdef.h │ ├── objbase.h │ ├── pe_image.h │ ├── poppack.h │ ├── pshpack1.h │ ├── pshpack2.h │ ├── pshpack4.h │ ├── pshpack8.h │ ├── vfw.h │ ├── winbase.h │ ├── windef.h │ ├── windows.h │ ├── winerror.h │ ├── winestring.h │ ├── winnt.h │ ├── winreg.h │ └── winuser.h ├── wrapper.S └── wrapper.h ├── pm_shared ├── pm_debug.h ├── pm_defs.h ├── pm_info.h ├── pm_materials.h ├── pm_movevars.h └── pm_shared.h ├── ports ├── README.emscripten.md ├── RENDERERS.md └── msvc6 │ ├── DbgHelp.Lib │ ├── Psapi.Lib │ ├── build.bat │ ├── build_dedicated.bat │ ├── build_launch.bat │ ├── build_nanogl.bat │ ├── dbghelp.h │ ├── psapi.h │ └── stdint.h ├── scripts ├── .travis-deploy.sh.swp ├── build_android_engine.sh ├── build_mingw_engine.sh ├── build_osx_engine.sh ├── build_portable_linux_engine.sh ├── travis-deploy.sh ├── travis-upload.sh ├── travis_common_deps.sh ├── travis_linux_deps.sh ├── travis_osx_deps.sh └── xash3d.sh ├── vgui_support ├── Android.mk ├── CMakeLists.txt ├── Makefile.linux ├── cl.bat ├── utlmemory.h ├── utlrbtree.h ├── utlvector.h ├── vgui_clip.cpp ├── vgui_font.cpp ├── vgui_input.cpp ├── vgui_int.cpp ├── vgui_main.h └── vgui_surf.cpp └── xashds@.service /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/.travis.yml -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/Android.mk -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/FWGSLib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/cmake/FWGSLib.cmake -------------------------------------------------------------------------------- /cmake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/cmake/FindSDL2.cmake -------------------------------------------------------------------------------- /cmake/FindVGUI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/cmake/FindVGUI.cmake -------------------------------------------------------------------------------- /cmake/VSForceXPToolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/cmake/VSForceXPToolchain.cmake -------------------------------------------------------------------------------- /common/backends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/backends.h -------------------------------------------------------------------------------- /common/beamdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/beamdef.h -------------------------------------------------------------------------------- /common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/bspfile.h -------------------------------------------------------------------------------- /common/cl_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/cl_entity.h -------------------------------------------------------------------------------- /common/com_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/com_model.h -------------------------------------------------------------------------------- /common/con_nprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/con_nprint.h -------------------------------------------------------------------------------- /common/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/const.h -------------------------------------------------------------------------------- /common/cvardef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/cvardef.h -------------------------------------------------------------------------------- /common/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/defaults.h -------------------------------------------------------------------------------- /common/demo_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/demo_api.h -------------------------------------------------------------------------------- /common/dlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/dlight.h -------------------------------------------------------------------------------- /common/engine_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/engine_features.h -------------------------------------------------------------------------------- /common/entity_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/entity_state.h -------------------------------------------------------------------------------- /common/entity_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/entity_types.h -------------------------------------------------------------------------------- /common/event_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/event_api.h -------------------------------------------------------------------------------- /common/event_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/event_args.h -------------------------------------------------------------------------------- /common/event_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/event_flags.h -------------------------------------------------------------------------------- /common/gameinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/gameinfo.h -------------------------------------------------------------------------------- /common/hltv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/hltv.h -------------------------------------------------------------------------------- /common/ivoicetweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/ivoicetweak.h -------------------------------------------------------------------------------- /common/kbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/kbutton.h -------------------------------------------------------------------------------- /common/lightstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/lightstyle.h -------------------------------------------------------------------------------- /common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/mathlib.h -------------------------------------------------------------------------------- /common/net_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/net_api.h -------------------------------------------------------------------------------- /common/netadr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/netadr.h -------------------------------------------------------------------------------- /common/particledef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/particledef.h -------------------------------------------------------------------------------- /common/pmtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/pmtrace.h -------------------------------------------------------------------------------- /common/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/port.h -------------------------------------------------------------------------------- /common/qfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/qfont.h -------------------------------------------------------------------------------- /common/r_efx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/r_efx.h -------------------------------------------------------------------------------- /common/r_studioint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/r_studioint.h -------------------------------------------------------------------------------- /common/ref_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/ref_params.h -------------------------------------------------------------------------------- /common/render_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/render_api.h -------------------------------------------------------------------------------- /common/screenfade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/screenfade.h -------------------------------------------------------------------------------- /common/studio_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/studio_event.h -------------------------------------------------------------------------------- /common/triangleapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/triangleapi.h -------------------------------------------------------------------------------- /common/usercmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/usercmd.h -------------------------------------------------------------------------------- /common/wadfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/wadfile.h -------------------------------------------------------------------------------- /common/weaponinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/weaponinfo.h -------------------------------------------------------------------------------- /common/wrect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/wrect.h -------------------------------------------------------------------------------- /common/xash3d_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/common/xash3d_types.h -------------------------------------------------------------------------------- /contrib/mittorn/Makefile.dllloader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/contrib/mittorn/Makefile.dllloader -------------------------------------------------------------------------------- /contrib/mittorn/Makefile.emscripten: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/contrib/mittorn/Makefile.emscripten -------------------------------------------------------------------------------- /contrib/mittorn/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/contrib/mittorn/Makefile.linux -------------------------------------------------------------------------------- /contrib/mittorn/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/contrib/mittorn/Makefile.mingw -------------------------------------------------------------------------------- /contrib/mittorn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/contrib/mittorn/README.md -------------------------------------------------------------------------------- /contrib/mittorn/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/contrib/mittorn/setup.bat -------------------------------------------------------------------------------- /contrib/mittorn/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/contrib/mittorn/setup.sh -------------------------------------------------------------------------------- /engine/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/Android.mk -------------------------------------------------------------------------------- /engine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/CMakeLists.txt -------------------------------------------------------------------------------- /engine/Sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/Sequence.h -------------------------------------------------------------------------------- /engine/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/anorms.h -------------------------------------------------------------------------------- /engine/cdll_exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/cdll_exp.h -------------------------------------------------------------------------------- /engine/cdll_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/cdll_int.h -------------------------------------------------------------------------------- /engine/client/anorm_dots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/anorm_dots.h -------------------------------------------------------------------------------- /engine/client/cl_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_cmds.c -------------------------------------------------------------------------------- /engine/client/cl_demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_demo.c -------------------------------------------------------------------------------- /engine/client/cl_events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_events.c -------------------------------------------------------------------------------- /engine/client/cl_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_frame.c -------------------------------------------------------------------------------- /engine/client/cl_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_game.c -------------------------------------------------------------------------------- /engine/client/cl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_main.c -------------------------------------------------------------------------------- /engine/client/cl_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_menu.c -------------------------------------------------------------------------------- /engine/client/cl_mobile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_mobile.c -------------------------------------------------------------------------------- /engine/client/cl_netgraph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_netgraph.c -------------------------------------------------------------------------------- /engine/client/cl_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_parse.c -------------------------------------------------------------------------------- /engine/client/cl_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_pmove.c -------------------------------------------------------------------------------- /engine/client/cl_remap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_remap.c -------------------------------------------------------------------------------- /engine/client/cl_scrn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_scrn.c -------------------------------------------------------------------------------- /engine/client/cl_tent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_tent.c -------------------------------------------------------------------------------- /engine/client/cl_tent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_tent.h -------------------------------------------------------------------------------- /engine/client/cl_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_video.c -------------------------------------------------------------------------------- /engine/client/cl_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/cl_view.c -------------------------------------------------------------------------------- /engine/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/client.h -------------------------------------------------------------------------------- /engine/client/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/console.c -------------------------------------------------------------------------------- /engine/client/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gamma.c -------------------------------------------------------------------------------- /engine/client/gl_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_backend.c -------------------------------------------------------------------------------- /engine/client/gl_beams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_beams.c -------------------------------------------------------------------------------- /engine/client/gl_cull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_cull.c -------------------------------------------------------------------------------- /engine/client/gl_decals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_decals.c -------------------------------------------------------------------------------- /engine/client/gl_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_draw.c -------------------------------------------------------------------------------- /engine/client/gl_dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_dynamic.h -------------------------------------------------------------------------------- /engine/client/gl_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_export.h -------------------------------------------------------------------------------- /engine/client/gl_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_image.c -------------------------------------------------------------------------------- /engine/client/gl_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_local.h -------------------------------------------------------------------------------- /engine/client/gl_mirror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_mirror.c -------------------------------------------------------------------------------- /engine/client/gl_refrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_refrag.c -------------------------------------------------------------------------------- /engine/client/gl_rlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_rlight.c -------------------------------------------------------------------------------- /engine/client/gl_rmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_rmain.c -------------------------------------------------------------------------------- /engine/client/gl_rmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_rmath.c -------------------------------------------------------------------------------- /engine/client/gl_rmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_rmisc.c -------------------------------------------------------------------------------- /engine/client/gl_rpart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_rpart.c -------------------------------------------------------------------------------- /engine/client/gl_rstrobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_rstrobe.c -------------------------------------------------------------------------------- /engine/client/gl_rsurf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_rsurf.c -------------------------------------------------------------------------------- /engine/client/gl_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_sprite.c -------------------------------------------------------------------------------- /engine/client/gl_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_static.h -------------------------------------------------------------------------------- /engine/client/gl_studio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_studio.c -------------------------------------------------------------------------------- /engine/client/gl_vidnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_vidnt.h -------------------------------------------------------------------------------- /engine/client/gl_warp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/gl_warp.c -------------------------------------------------------------------------------- /engine/client/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/input.c -------------------------------------------------------------------------------- /engine/client/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/input.h -------------------------------------------------------------------------------- /engine/client/input_evdevkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/input_evdevkey.c -------------------------------------------------------------------------------- /engine/client/joyinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/joyinput.c -------------------------------------------------------------------------------- /engine/client/joyinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/joyinput.h -------------------------------------------------------------------------------- /engine/client/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/keys.c -------------------------------------------------------------------------------- /engine/client/s_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/s_dsp.c -------------------------------------------------------------------------------- /engine/client/s_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/s_load.c -------------------------------------------------------------------------------- /engine/client/s_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/s_main.c -------------------------------------------------------------------------------- /engine/client/s_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/s_mix.c -------------------------------------------------------------------------------- /engine/client/s_mouth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/s_mouth.c -------------------------------------------------------------------------------- /engine/client/s_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/s_stream.c -------------------------------------------------------------------------------- /engine/client/s_stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/s_stub.c -------------------------------------------------------------------------------- /engine/client/s_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/s_utils.c -------------------------------------------------------------------------------- /engine/client/s_vox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/s_vox.c -------------------------------------------------------------------------------- /engine/client/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/sound.h -------------------------------------------------------------------------------- /engine/client/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/touch.c -------------------------------------------------------------------------------- /engine/client/touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/touch.h -------------------------------------------------------------------------------- /engine/client/vgui/vgui_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/vgui/vgui_draw.c -------------------------------------------------------------------------------- /engine/client/vgui/vgui_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/vgui/vgui_draw.h -------------------------------------------------------------------------------- /engine/client/vid_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/vid_common.c -------------------------------------------------------------------------------- /engine/client/vox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/client/vox.h -------------------------------------------------------------------------------- /engine/common/Sequence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/Sequence.c -------------------------------------------------------------------------------- /engine/common/avikit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/avikit.c -------------------------------------------------------------------------------- /engine/common/base_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/base_cmd.c -------------------------------------------------------------------------------- /engine/common/base_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/base_cmd.h -------------------------------------------------------------------------------- /engine/common/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/build.c -------------------------------------------------------------------------------- /engine/common/cfgscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/cfgscript.c -------------------------------------------------------------------------------- /engine/common/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/cmd.c -------------------------------------------------------------------------------- /engine/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/common.c -------------------------------------------------------------------------------- /engine/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/common.h -------------------------------------------------------------------------------- /engine/common/con_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/con_utils.c -------------------------------------------------------------------------------- /engine/common/crashhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/crashhandler.c -------------------------------------------------------------------------------- /engine/common/crclib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/crclib.c -------------------------------------------------------------------------------- /engine/common/crtlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/crtlib.c -------------------------------------------------------------------------------- /engine/common/crtlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/crtlib.h -------------------------------------------------------------------------------- /engine/common/crtlib_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/crtlib_inline.h -------------------------------------------------------------------------------- /engine/common/cvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/cvar.c -------------------------------------------------------------------------------- /engine/common/dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/dedicated.c -------------------------------------------------------------------------------- /engine/common/filesystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/filesystem.c -------------------------------------------------------------------------------- /engine/common/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/filesystem.h -------------------------------------------------------------------------------- /engine/common/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/host.c -------------------------------------------------------------------------------- /engine/common/hpak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/hpak.c -------------------------------------------------------------------------------- /engine/common/identification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/identification.c -------------------------------------------------------------------------------- /engine/common/imagelib/imagelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/imagelib/imagelib.h -------------------------------------------------------------------------------- /engine/common/imagelib/img_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/imagelib/img_bmp.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_dds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/imagelib/img_dds.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/imagelib/img_main.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_quant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/imagelib/img_quant.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/imagelib/img_tga.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/imagelib/img_utils.c -------------------------------------------------------------------------------- /engine/common/imagelib/img_wad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/imagelib/img_wad.c -------------------------------------------------------------------------------- /engine/common/infostring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/infostring.c -------------------------------------------------------------------------------- /engine/common/launcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/launcher.c -------------------------------------------------------------------------------- /engine/common/library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/library.c -------------------------------------------------------------------------------- /engine/common/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/library.h -------------------------------------------------------------------------------- /engine/common/masterlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/masterlist.c -------------------------------------------------------------------------------- /engine/common/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/mathlib.c -------------------------------------------------------------------------------- /engine/common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/mathlib.h -------------------------------------------------------------------------------- /engine/common/matrixlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/matrixlib.c -------------------------------------------------------------------------------- /engine/common/mod_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/mod_local.h -------------------------------------------------------------------------------- /engine/common/mod_studio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/mod_studio.c -------------------------------------------------------------------------------- /engine/common/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/model.c -------------------------------------------------------------------------------- /engine/common/neon_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/neon_mathfun.h -------------------------------------------------------------------------------- /engine/common/net_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/net_buffer.c -------------------------------------------------------------------------------- /engine/common/net_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/net_buffer.h -------------------------------------------------------------------------------- /engine/common/net_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/net_chan.c -------------------------------------------------------------------------------- /engine/common/net_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/net_encode.c -------------------------------------------------------------------------------- /engine/common/net_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/net_encode.h -------------------------------------------------------------------------------- /engine/common/net_huff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/net_huff.c -------------------------------------------------------------------------------- /engine/common/netchan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/netchan.h -------------------------------------------------------------------------------- /engine/common/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/network.c -------------------------------------------------------------------------------- /engine/common/pm_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/pm_local.h -------------------------------------------------------------------------------- /engine/common/pm_surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/pm_surface.c -------------------------------------------------------------------------------- /engine/common/pm_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/pm_trace.c -------------------------------------------------------------------------------- /engine/common/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/protocol.h -------------------------------------------------------------------------------- /engine/common/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/random.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/dct36.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/dct36.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/dct64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/dct64.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/fmt123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/fmt123.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/format.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/frame.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/frame.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/getbits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/getbits.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/huffman.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/index.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/index.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/layer3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/layer3.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/libmpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/libmpg.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/libmpg.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/libmpg.dsp -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/libmpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/libmpg.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/mpeghead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/mpeghead.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/mpg123.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/mpg123.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/mpg123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/mpg123.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/parse.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/reader.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/reader.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/sample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/sample.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/synth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/synth.c -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/synth.h -------------------------------------------------------------------------------- /engine/common/soundlib/libmpg/tabinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/libmpg/tabinit.c -------------------------------------------------------------------------------- /engine/common/soundlib/snd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/snd_main.c -------------------------------------------------------------------------------- /engine/common/soundlib/snd_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/snd_mp3.c -------------------------------------------------------------------------------- /engine/common/soundlib/snd_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/snd_utils.c -------------------------------------------------------------------------------- /engine/common/soundlib/snd_wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/snd_wav.c -------------------------------------------------------------------------------- /engine/common/soundlib/soundlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/soundlib/soundlib.h -------------------------------------------------------------------------------- /engine/common/sse_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/sse_mathfun.h -------------------------------------------------------------------------------- /engine/common/stb/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/stb/stb_sprintf.h -------------------------------------------------------------------------------- /engine/common/sys_con.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/sys_con.c -------------------------------------------------------------------------------- /engine/common/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/system.c -------------------------------------------------------------------------------- /engine/common/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/system.h -------------------------------------------------------------------------------- /engine/common/titles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/titles.c -------------------------------------------------------------------------------- /engine/common/world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/world.c -------------------------------------------------------------------------------- /engine/common/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/world.h -------------------------------------------------------------------------------- /engine/common/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/common/zone.c -------------------------------------------------------------------------------- /engine/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/custom.h -------------------------------------------------------------------------------- /engine/customentity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/customentity.h -------------------------------------------------------------------------------- /engine/edict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/edict.h -------------------------------------------------------------------------------- /engine/eiface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/eiface.h -------------------------------------------------------------------------------- /engine/fs_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/fs_int.h -------------------------------------------------------------------------------- /engine/keydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/keydefs.h -------------------------------------------------------------------------------- /engine/menu_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/menu_int.h -------------------------------------------------------------------------------- /engine/mobility_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/mobility_int.h -------------------------------------------------------------------------------- /engine/physint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/physint.h -------------------------------------------------------------------------------- /engine/platform/android/android-main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/android/android-main.h -------------------------------------------------------------------------------- /engine/platform/android/android_nosdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/android/android_nosdl.c -------------------------------------------------------------------------------- /engine/platform/android/dlsym-weak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/android/dlsym-weak.cpp -------------------------------------------------------------------------------- /engine/platform/android/dlsym-weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/android/dlsym-weak.h -------------------------------------------------------------------------------- /engine/platform/android/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/android/linker.h -------------------------------------------------------------------------------- /engine/platform/android/snd_opensles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/android/snd_opensles.c -------------------------------------------------------------------------------- /engine/platform/android/vid_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/android/vid_android.c -------------------------------------------------------------------------------- /engine/platform/emscripten/mods.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/emscripten/mods.js.example -------------------------------------------------------------------------------- /engine/platform/emscripten/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/emscripten/shell.html -------------------------------------------------------------------------------- /engine/platform/emscripten/unaligned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/emscripten/unaligned.txt -------------------------------------------------------------------------------- /engine/platform/sdl/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/sdl/events.c -------------------------------------------------------------------------------- /engine/platform/sdl/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/sdl/events.h -------------------------------------------------------------------------------- /engine/platform/sdl/gl_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/sdl/gl_sdl.c -------------------------------------------------------------------------------- /engine/platform/sdl/snd_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/sdl/snd_sdl.c -------------------------------------------------------------------------------- /engine/platform/sdl/vid_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/sdl/vid_sdl.c -------------------------------------------------------------------------------- /engine/platform/win32/con_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/platform/win32/con_win.c -------------------------------------------------------------------------------- /engine/progdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/progdefs.h -------------------------------------------------------------------------------- /engine/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/server.h -------------------------------------------------------------------------------- /engine/server/sv_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_client.c -------------------------------------------------------------------------------- /engine/server/sv_cmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_cmds.c -------------------------------------------------------------------------------- /engine/server/sv_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_custom.c -------------------------------------------------------------------------------- /engine/server/sv_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_filter.c -------------------------------------------------------------------------------- /engine/server/sv_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_frame.c -------------------------------------------------------------------------------- /engine/server/sv_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_game.c -------------------------------------------------------------------------------- /engine/server/sv_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_init.c -------------------------------------------------------------------------------- /engine/server/sv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_log.c -------------------------------------------------------------------------------- /engine/server/sv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_main.c -------------------------------------------------------------------------------- /engine/server/sv_move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_move.c -------------------------------------------------------------------------------- /engine/server/sv_phys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_phys.c -------------------------------------------------------------------------------- /engine/server/sv_pmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_pmove.c -------------------------------------------------------------------------------- /engine/server/sv_save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_save.c -------------------------------------------------------------------------------- /engine/server/sv_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/server/sv_world.c -------------------------------------------------------------------------------- /engine/shake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/shake.h -------------------------------------------------------------------------------- /engine/sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/sprite.h -------------------------------------------------------------------------------- /engine/studio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/studio.h -------------------------------------------------------------------------------- /engine/vgui_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/vgui_api.h -------------------------------------------------------------------------------- /engine/warpsin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/engine/warpsin.h -------------------------------------------------------------------------------- /game_launch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/game_launch/CMakeLists.txt -------------------------------------------------------------------------------- /game_launch/game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/game_launch/game.rc -------------------------------------------------------------------------------- /game_launch/icon-gyllenkilde-material.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/game_launch/icon-gyllenkilde-material.ico -------------------------------------------------------------------------------- /game_launch/icon-gyllenkilde-material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/game_launch/icon-gyllenkilde-material.png -------------------------------------------------------------------------------- /game_launch/icon-xash-material.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/game_launch/icon-xash-material.ico -------------------------------------------------------------------------------- /game_launch/icon-xash-material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/game_launch/icon-xash-material.png -------------------------------------------------------------------------------- /game_launch/xash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/game_launch/xash.c -------------------------------------------------------------------------------- /loader/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/1.py -------------------------------------------------------------------------------- /loader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/CMakeLists.txt -------------------------------------------------------------------------------- /loader/com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/com.h -------------------------------------------------------------------------------- /loader/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/config.h -------------------------------------------------------------------------------- /loader/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/debug.h -------------------------------------------------------------------------------- /loader/elfdll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/elfdll.c -------------------------------------------------------------------------------- /loader/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/ext.c -------------------------------------------------------------------------------- /loader/ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/ext.h -------------------------------------------------------------------------------- /loader/gldef.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/gldef.in -------------------------------------------------------------------------------- /loader/glfuncs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/glfuncs.inc -------------------------------------------------------------------------------- /loader/glvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/glvars.h -------------------------------------------------------------------------------- /loader/glvars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/glvars.inc -------------------------------------------------------------------------------- /loader/ldt_keeper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/ldt_keeper.c -------------------------------------------------------------------------------- /loader/ldt_keeper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/ldt_keeper.h -------------------------------------------------------------------------------- /loader/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/loader.c -------------------------------------------------------------------------------- /loader/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/loader.h -------------------------------------------------------------------------------- /loader/mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/mangle.h -------------------------------------------------------------------------------- /loader/mmap_anon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/mmap_anon.c -------------------------------------------------------------------------------- /loader/mmap_anon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/mmap_anon.h -------------------------------------------------------------------------------- /loader/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/module.c -------------------------------------------------------------------------------- /loader/pe_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/pe_image.c -------------------------------------------------------------------------------- /loader/pe_resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/pe_resource.c -------------------------------------------------------------------------------- /loader/registry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/registry.c -------------------------------------------------------------------------------- /loader/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/registry.h -------------------------------------------------------------------------------- /loader/resource.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/resource.c -------------------------------------------------------------------------------- /loader/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/win32.c -------------------------------------------------------------------------------- /loader/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/win32.h -------------------------------------------------------------------------------- /loader/wine/avifmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/avifmt.h -------------------------------------------------------------------------------- /loader/wine/basetsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/basetsd.h -------------------------------------------------------------------------------- /loader/wine/debugtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/debugtools.h -------------------------------------------------------------------------------- /loader/wine/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/driver.h -------------------------------------------------------------------------------- /loader/wine/elfdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/elfdll.h -------------------------------------------------------------------------------- /loader/wine/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/heap.h -------------------------------------------------------------------------------- /loader/wine/ldt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/ldt.h -------------------------------------------------------------------------------- /loader/wine/mmreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/mmreg.h -------------------------------------------------------------------------------- /loader/wine/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/module.h -------------------------------------------------------------------------------- /loader/wine/msacm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/msacm.h -------------------------------------------------------------------------------- /loader/wine/msacmdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/msacmdrv.h -------------------------------------------------------------------------------- /loader/wine/ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/ntdef.h -------------------------------------------------------------------------------- /loader/wine/objbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/objbase.h -------------------------------------------------------------------------------- /loader/wine/pe_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/pe_image.h -------------------------------------------------------------------------------- /loader/wine/poppack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/poppack.h -------------------------------------------------------------------------------- /loader/wine/pshpack1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/pshpack1.h -------------------------------------------------------------------------------- /loader/wine/pshpack2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/pshpack2.h -------------------------------------------------------------------------------- /loader/wine/pshpack4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/pshpack4.h -------------------------------------------------------------------------------- /loader/wine/pshpack8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/pshpack8.h -------------------------------------------------------------------------------- /loader/wine/vfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/vfw.h -------------------------------------------------------------------------------- /loader/wine/winbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/winbase.h -------------------------------------------------------------------------------- /loader/wine/windef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/windef.h -------------------------------------------------------------------------------- /loader/wine/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/windows.h -------------------------------------------------------------------------------- /loader/wine/winerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/winerror.h -------------------------------------------------------------------------------- /loader/wine/winestring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/winestring.h -------------------------------------------------------------------------------- /loader/wine/winnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/winnt.h -------------------------------------------------------------------------------- /loader/wine/winreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/winreg.h -------------------------------------------------------------------------------- /loader/wine/winuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wine/winuser.h -------------------------------------------------------------------------------- /loader/wrapper.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wrapper.S -------------------------------------------------------------------------------- /loader/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/loader/wrapper.h -------------------------------------------------------------------------------- /pm_shared/pm_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/pm_shared/pm_debug.h -------------------------------------------------------------------------------- /pm_shared/pm_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/pm_shared/pm_defs.h -------------------------------------------------------------------------------- /pm_shared/pm_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/pm_shared/pm_info.h -------------------------------------------------------------------------------- /pm_shared/pm_materials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/pm_shared/pm_materials.h -------------------------------------------------------------------------------- /pm_shared/pm_movevars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/pm_shared/pm_movevars.h -------------------------------------------------------------------------------- /pm_shared/pm_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/pm_shared/pm_shared.h -------------------------------------------------------------------------------- /ports/README.emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/ports/README.emscripten.md -------------------------------------------------------------------------------- /ports/RENDERERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/ports/RENDERERS.md -------------------------------------------------------------------------------- /ports/msvc6/DbgHelp.Lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/ports/msvc6/DbgHelp.Lib -------------------------------------------------------------------------------- /ports/msvc6/Psapi.Lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/ports/msvc6/Psapi.Lib -------------------------------------------------------------------------------- /ports/msvc6/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/ports/msvc6/build.bat -------------------------------------------------------------------------------- /ports/msvc6/build_dedicated.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/ports/msvc6/build_dedicated.bat -------------------------------------------------------------------------------- /ports/msvc6/build_launch.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/ports/msvc6/build_launch.bat -------------------------------------------------------------------------------- /ports/msvc6/build_nanogl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/ports/msvc6/build_nanogl.bat -------------------------------------------------------------------------------- /ports/msvc6/dbghelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/ports/msvc6/dbghelp.h -------------------------------------------------------------------------------- /ports/msvc6/psapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/ports/msvc6/psapi.h -------------------------------------------------------------------------------- /ports/msvc6/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/ports/msvc6/stdint.h -------------------------------------------------------------------------------- /scripts/.travis-deploy.sh.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/scripts/.travis-deploy.sh.swp -------------------------------------------------------------------------------- /scripts/build_android_engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/scripts/build_android_engine.sh -------------------------------------------------------------------------------- /scripts/build_mingw_engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/scripts/build_mingw_engine.sh -------------------------------------------------------------------------------- /scripts/build_osx_engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/scripts/build_osx_engine.sh -------------------------------------------------------------------------------- /scripts/build_portable_linux_engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/scripts/build_portable_linux_engine.sh -------------------------------------------------------------------------------- /scripts/travis-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/scripts/travis-deploy.sh -------------------------------------------------------------------------------- /scripts/travis-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/scripts/travis-upload.sh -------------------------------------------------------------------------------- /scripts/travis_common_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/scripts/travis_common_deps.sh -------------------------------------------------------------------------------- /scripts/travis_linux_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/scripts/travis_linux_deps.sh -------------------------------------------------------------------------------- /scripts/travis_osx_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/scripts/travis_osx_deps.sh -------------------------------------------------------------------------------- /scripts/xash3d.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/scripts/xash3d.sh -------------------------------------------------------------------------------- /vgui_support/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/Android.mk -------------------------------------------------------------------------------- /vgui_support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/CMakeLists.txt -------------------------------------------------------------------------------- /vgui_support/Makefile.linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/Makefile.linux -------------------------------------------------------------------------------- /vgui_support/cl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/cl.bat -------------------------------------------------------------------------------- /vgui_support/utlmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/utlmemory.h -------------------------------------------------------------------------------- /vgui_support/utlrbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/utlrbtree.h -------------------------------------------------------------------------------- /vgui_support/utlvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/utlvector.h -------------------------------------------------------------------------------- /vgui_support/vgui_clip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/vgui_clip.cpp -------------------------------------------------------------------------------- /vgui_support/vgui_font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/vgui_font.cpp -------------------------------------------------------------------------------- /vgui_support/vgui_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/vgui_input.cpp -------------------------------------------------------------------------------- /vgui_support/vgui_int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/vgui_int.cpp -------------------------------------------------------------------------------- /vgui_support/vgui_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/vgui_main.h -------------------------------------------------------------------------------- /vgui_support/vgui_surf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/vgui_support/vgui_surf.cpp -------------------------------------------------------------------------------- /xashds@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FWGS/xash3d/HEAD/xashds@.service --------------------------------------------------------------------------------