├── .gitattributes ├── .github └── workflows │ ├── compile-ghostinj.yml │ ├── compile-luajit.yml │ ├── compile.yml │ ├── compile_custom.yml │ ├── compile_release.yml │ └── show_summary.yml ├── .gitignore ├── BUILD.md ├── FUNDING.yml ├── README.md ├── development └── module │ ├── .gitattributes │ ├── build.bat │ ├── premake5 │ ├── premake5.exe │ ├── premake5.lua │ └── premake5.pdb ├── example-module-dll ├── .gitignore ├── README.md ├── build.bat ├── premake5.exe ├── premake5.lua └── source │ ├── example.cpp │ └── public │ ├── README.md │ ├── iconfigsystem.h │ ├── iholylib.h │ ├── iholyutil.h │ └── imodule.h ├── example-scripts ├── README.md ├── networkchannel.lua └── streamed_voicestream.lua ├── ghostinj-dll ├── README.md ├── build.bat ├── ghostinj.dll ├── overrides.lua ├── premake5.exe ├── premake5.lua └── source │ └── dll.cpp ├── gluatests ├── README.md ├── binaries │ ├── README.md │ ├── gmsv_reqwest_linux.dll │ └── gmsv_reqwest_linux64.dll ├── lua │ ├── autorun │ │ └── gmod_tests_init.lua │ ├── gmod_tests │ │ └── sh_init.lua │ └── tests │ │ ├── core │ │ ├── ClearLuaTable.lua │ │ ├── GetEntity.lua │ │ ├── GetGModUserData.lua │ │ ├── GetModuleData.lua │ │ ├── GetPlayer.lua │ │ ├── GetReferencedUserData.lua │ │ ├── GetUserData.lua │ │ ├── Loaded.lua │ │ ├── PushEntity.lua │ │ └── PushUserData.lua │ │ ├── dlls │ │ └── Loaded.lua │ │ └── modules │ │ ├── bass │ │ ├── PlayFile.lua │ │ ├── PlayUrl.lua │ │ └── igmodaudiochannel │ │ │ ├── Destroy.lua │ │ │ ├── GetTable.lua │ │ │ ├── Pause.lua │ │ │ ├── Play.lua │ │ │ ├── SetVolume.lua │ │ │ ├── Stop.lua │ │ │ ├── __index.lua │ │ │ ├── __newindex.lua │ │ │ └── __tostring.lua │ │ ├── bitbuf │ │ ├── CreateReadBuffer.lua │ │ └── CreateStackReadBuffer.lua │ │ ├── cvars │ │ ├── Find.lua │ │ ├── GetAll.lua │ │ └── SetValue.lua │ │ ├── entitylist │ │ ├── CreateEntityList.lua │ │ ├── GetGlobalEntityList.lua │ │ └── entitylist │ │ │ ├── GetEntities.lua │ │ │ ├── GetTable.lua │ │ │ ├── IsValid.lua │ │ │ ├── SetEntities.lua │ │ │ ├── __gc.lua │ │ │ ├── __index.lua │ │ │ ├── __newindex.lua │ │ │ └── __tostring.lua │ │ ├── filesystem │ │ ├── AbsoluteSearchCache.lua │ │ ├── EasyDirCheck.lua │ │ ├── Exists.lua │ │ ├── IsDir.lua │ │ ├── Size.lua │ │ └── Time.lua │ │ ├── gameserver │ │ └── gameserver_SendConnectionlessPacket.lua │ │ ├── holylib │ │ ├── OnMapChange.lua │ │ └── ReceiveClientMessage.lua │ │ ├── pas │ │ └── FindInPAS.lua │ │ ├── pvs │ │ └── FindInPVS.lua │ │ ├── stringtable │ │ ├── AllowCreation.lua │ │ ├── CreateStringTable.lua │ │ ├── CreateStringTableEx.lua │ │ ├── FindTable.lua │ │ ├── GetNumTables.lua │ │ ├── GetTable.lua │ │ ├── INVALID_STRING_INDEX.lua │ │ ├── IsCreationAllowed.lua │ │ ├── IsLocked.lua │ │ ├── RemoveAllTables.lua │ │ ├── RemoveTable.lua │ │ ├── SetAllowClientSideAddString.lua │ │ └── SetLocked.lua │ │ ├── util │ │ ├── FancyJSONToTable.lua │ │ └── FancyTableToJSON.lua │ │ └── voicechat │ │ ├── CreateVoiceData.lua │ │ └── voicedata │ │ ├── CreateCopy.lua │ │ ├── GetData.lua │ │ ├── GetLength.lua │ │ ├── GetPlayerSlot.lua │ │ ├── GetProximity.lua │ │ ├── GetTable.lua │ │ ├── GetUncompressedData.lua │ │ ├── IsValid.lua │ │ ├── SetData.lua │ │ ├── SetLength.lua │ │ ├── SetPlayerSlot.lua │ │ ├── SetProximity.lua │ │ ├── SetUncompressedData.lua │ │ ├── __gc.lua │ │ ├── __index.lua │ │ ├── __newindex.lua │ │ └── __tostring.lua ├── maps │ ├── README.md │ └── gm_glua_tests.bsp ├── sound │ ├── bass_testsound.wav │ └── not_real.txt └── test.folder │ ├── folder2 │ └── placeholder.txt │ └── placeholder.txt ├── holylib.vdf ├── holylib_64.vdf ├── latest_version.txt ├── libs ├── linux32 │ ├── libbass.so │ ├── libluajit_32.a │ └── libopus_32.a ├── linux64 │ ├── libbass.so │ ├── libluajit_64.a │ └── libopus_64.a ├── win32 │ ├── bass_32.lib │ ├── lua51_32.lib │ └── opus_32.lib └── win64 │ ├── bass_64.lib │ ├── lua51_64.lib │ └── opus_64.lib ├── luajit ├── .gitattributes ├── .gitignore ├── .relver ├── COPYRIGHT ├── Makefile ├── README ├── README.md ├── dynasm │ ├── dasm_arm.h │ ├── dasm_arm.lua │ ├── dasm_arm64.h │ ├── dasm_arm64.lua │ ├── dasm_mips.h │ ├── dasm_mips.lua │ ├── dasm_mips64.lua │ ├── dasm_ppc.h │ ├── dasm_ppc.lua │ ├── dasm_proto.h │ ├── dasm_x64.lua │ ├── dasm_x86.h │ ├── dasm_x86.lua │ └── dynasm.lua ├── etc │ ├── luajit.1 │ └── luajit.pc ├── luajit └── src │ ├── .gitignore │ ├── Makefile │ ├── Makefile.dep │ ├── gmod.cpp │ ├── gmod.h │ ├── host │ ├── .gitignore │ ├── README │ ├── buildvm.c │ ├── buildvm.h │ ├── buildvm_asm.c │ ├── buildvm_fold.c │ ├── buildvm_lib.c │ ├── buildvm_libbc.h │ ├── buildvm_peobj.c │ ├── genlibbc.lua │ ├── genminilua.lua │ ├── genversion.lua │ └── minilua.c │ ├── jit │ ├── .gitignore │ ├── bc.lua │ ├── bcsave.lua │ ├── dis_arm.lua │ ├── dis_arm64.lua │ ├── dis_arm64be.lua │ ├── dis_mips.lua │ ├── dis_mips64.lua │ ├── dis_mips64el.lua │ ├── dis_mips64r6.lua │ ├── dis_mips64r6el.lua │ ├── dis_mipsel.lua │ ├── dis_ppc.lua │ ├── dis_x64.lua │ ├── dis_x86.lua │ ├── dump.lua │ ├── p.lua │ ├── v.lua │ └── zone.lua │ ├── lauxlib.h │ ├── lib_aux.c │ ├── lib_base.c │ ├── lib_bit.c │ ├── lib_buffer.c │ ├── lib_debug.c │ ├── lib_ffi.c │ ├── lib_init.c │ ├── lib_io.c │ ├── lib_jit.c │ ├── lib_math.c │ ├── lib_os.c │ ├── lib_package.c │ ├── lib_string.c │ ├── lib_table.c │ ├── lj_alloc.c │ ├── lj_alloc.h │ ├── lj_api.c │ ├── lj_arch.h │ ├── lj_asm.c │ ├── lj_asm.h │ ├── lj_asm_arm.h │ ├── lj_asm_arm64.h │ ├── lj_asm_mips.h │ ├── lj_asm_ppc.h │ ├── lj_asm_x86.h │ ├── lj_assert.c │ ├── lj_bc.c │ ├── lj_bc.h │ ├── lj_bcdump.h │ ├── lj_bcread.c │ ├── lj_bcwrite.c │ ├── lj_buf.c │ ├── lj_buf.h │ ├── lj_carith.c │ ├── lj_carith.h │ ├── lj_ccall.c │ ├── lj_ccall.h │ ├── lj_ccallback.c │ ├── lj_ccallback.h │ ├── lj_cconv.c │ ├── lj_cconv.h │ ├── lj_cdata.c │ ├── lj_cdata.h │ ├── lj_char.c │ ├── lj_char.h │ ├── lj_clib.c │ ├── lj_clib.h │ ├── lj_cparse.c │ ├── lj_cparse.h │ ├── lj_crecord.c │ ├── lj_crecord.h │ ├── lj_ctype.c │ ├── lj_ctype.h │ ├── lj_debug.c │ ├── lj_debug.h │ ├── lj_def.h │ ├── lj_dispatch.c │ ├── lj_dispatch.h │ ├── lj_emit_arm.h │ ├── lj_emit_arm64.h │ ├── lj_emit_mips.h │ ├── lj_emit_ppc.h │ ├── lj_emit_x86.h │ ├── lj_err.c │ ├── lj_err.h │ ├── lj_errmsg.h │ ├── lj_ff.h │ ├── lj_ffrecord.c │ ├── lj_ffrecord.h │ ├── lj_frame.h │ ├── lj_func.c │ ├── lj_func.h │ ├── lj_gc.c │ ├── lj_gc.h │ ├── lj_gdbjit.c │ ├── lj_gdbjit.h │ ├── lj_ir.c │ ├── lj_ir.h │ ├── lj_ircall.h │ ├── lj_iropt.h │ ├── lj_jit.h │ ├── lj_lex.c │ ├── lj_lex.h │ ├── lj_lib.c │ ├── lj_lib.h │ ├── lj_load.c │ ├── lj_mcode.c │ ├── lj_mcode.h │ ├── lj_meta.c │ ├── lj_meta.h │ ├── lj_obj.c │ ├── lj_obj.h │ ├── lj_opt_dce.c │ ├── lj_opt_fold.c │ ├── lj_opt_loop.c │ ├── lj_opt_mem.c │ ├── lj_opt_narrow.c │ ├── lj_opt_sink.c │ ├── lj_opt_split.c │ ├── lj_parse.c │ ├── lj_parse.h │ ├── lj_prng.c │ ├── lj_prng.h │ ├── lj_profile.c │ ├── lj_profile.h │ ├── lj_record.c │ ├── lj_record.h │ ├── lj_serialize.c │ ├── lj_serialize.h │ ├── lj_snap.c │ ├── lj_snap.h │ ├── lj_state.c │ ├── lj_state.h │ ├── lj_str.c │ ├── lj_str.h │ ├── lj_strfmt.c │ ├── lj_strfmt.h │ ├── lj_strfmt_num.c │ ├── lj_strscan.c │ ├── lj_strscan.h │ ├── lj_tab.c │ ├── lj_tab.h │ ├── lj_target.h │ ├── lj_target_arm.h │ ├── lj_target_arm64.h │ ├── lj_target_mips.h │ ├── lj_target_ppc.h │ ├── lj_target_x86.h │ ├── lj_trace.c │ ├── lj_trace.h │ ├── lj_traceerr.h │ ├── lj_udata.c │ ├── lj_udata.h │ ├── lj_vm.h │ ├── lj_vmevent.c │ ├── lj_vmevent.h │ ├── lj_vmmath.c │ ├── ljamalg.c │ ├── lua.h │ ├── lua.hpp │ ├── luaconf.h │ ├── luajit.c │ ├── luajit_rolling.h │ ├── lualib.h │ ├── msvcbuild.bat │ ├── msvcbuild_86.bat │ ├── nxbuild.bat │ ├── ps4build.bat │ ├── ps5build.bat │ ├── psvitabuild.bat │ ├── test.lua │ ├── vm_arm.dasc │ ├── vm_arm64.dasc │ ├── vm_mips.dasc │ ├── vm_mips64.dasc │ ├── vm_ppc.dasc │ ├── vm_x64.dasc │ ├── vm_x86.dasc │ ├── xb1build.bat │ └── xedkbuild.bat ├── premake5.lua ├── project ├── gluatest_custom.cfg └── gluatest_requirements.txt └── source ├── LuaInterface.h ├── _prebuildtools ├── _compilefiles.lua ├── _dependency_manager.lua ├── _workflow_summary.lua ├── http.lua ├── json.lua ├── luajit.exe ├── luajit_32 ├── luajit_64 └── utils.lua ├── _versioninfo.cpp ├── ankerl └── unordered_dense.h ├── bootil ├── include │ └── Bootil │ │ ├── Base.h │ │ ├── Bootil.h │ │ ├── Console │ │ ├── Console.h │ │ └── ConsoleInput.h │ │ ├── Data │ │ ├── Json.h │ │ └── Tree.h │ │ ├── Debug │ │ ├── Debug.h │ │ └── InstanceCounter.h │ │ ├── File │ │ ├── Changes.h │ │ ├── File.h │ │ └── System.h │ │ ├── Image │ │ ├── Image.h │ │ ├── JPEG.h │ │ └── PNG.h │ │ ├── Network │ │ ├── HTTP.h │ │ ├── Network.h │ │ ├── Router.h │ │ └── Socket.h │ │ ├── Platform │ │ └── Platform.h │ │ ├── Threads │ │ ├── Mutex.h │ │ ├── Thread.h │ │ └── Utility.h │ │ ├── Types │ │ ├── Buffer.h │ │ ├── Math.h │ │ └── String.h │ │ └── Utility │ │ ├── CommandLine.h │ │ ├── Compression.h │ │ ├── Hasher.h │ │ ├── PackFile.h │ │ ├── Processes.h │ │ ├── STLUtility.h │ │ └── Time.h ├── premake5.lua └── src │ ├── 3rdParty │ ├── fastlz │ │ ├── README.TXT │ │ ├── fastlz.c │ │ └── fastlz.h │ ├── globber.cpp │ ├── happyhttp │ │ ├── happyhttp.cpp │ │ ├── happyhttp.h │ │ └── happyhttp.html │ ├── jpegcompressor │ │ ├── jpge.cpp │ │ └── jpge.h │ ├── lzma │ │ ├── Alloc.c │ │ ├── Alloc.h │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzHash.h │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.c │ │ ├── LzmaLib.h │ │ ├── Types.h │ │ └── lzma.txt │ ├── rapidjson │ │ ├── allocators.h │ │ ├── cursorstreamwrapper.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── fwd.h │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── clzll.h │ │ │ ├── diyfp.h │ │ │ ├── dtoa.h │ │ │ ├── ieee754.h │ │ │ ├── itoa.h │ │ │ ├── meta.h │ │ │ ├── pow10.h │ │ │ ├── regex.h │ │ │ ├── stack.h │ │ │ ├── strfunc.h │ │ │ ├── strtod.h │ │ │ └── swap.h │ │ ├── istreamwrapper.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ │ ├── inttypes.h │ │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ ├── uri.h │ │ └── writer.h │ ├── smhasher │ │ ├── Bitvec.h │ │ ├── Platform.h │ │ ├── Types.h │ │ ├── crc.cpp │ │ ├── pstdint.h │ │ └── smhash_md5.cpp │ ├── stb_image │ │ └── stb_image.h │ ├── stlencoders │ │ ├── base16.hpp │ │ ├── base2.hpp │ │ ├── base32.hpp │ │ ├── base64.hpp │ │ ├── error.hpp │ │ ├── iterator.hpp │ │ ├── lookup.hpp │ │ └── traits.hpp │ ├── tinythreadpp │ │ ├── fast_mutex.h │ │ ├── tinythread.cpp │ │ └── tinythread.h │ ├── xzip │ │ ├── readme.txt │ │ ├── unzip.cc │ │ ├── unzip.h │ │ ├── zip.cc │ │ └── zip.h │ └── zlib │ │ ├── adler32.c │ │ ├── compress.c │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── deflate.c │ │ ├── deflate.h │ │ ├── gzclose.c │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── infback.c │ │ ├── inffast.c │ │ ├── inffast.h │ │ ├── inffixed.h │ │ ├── inflate.c │ │ ├── inflate.h │ │ ├── inftrees.c │ │ ├── inftrees.h │ │ ├── trees.c │ │ ├── trees.h │ │ ├── uncompr.c │ │ ├── zconf.h │ │ ├── zlib.h │ │ ├── zutil.c │ │ └── zutil.h │ └── Bootil │ ├── Base.cpp │ ├── Console │ ├── Console.cpp │ └── ConsoleInput.cpp │ ├── Data │ ├── Json.cpp │ └── Tree.cpp │ ├── Debug │ └── Debug.cpp │ ├── File │ ├── Changes.cpp │ ├── File.cpp │ └── System.cpp │ ├── Image │ ├── Image.cpp │ └── JPEG.cpp │ ├── Network │ ├── HTTP.cpp │ ├── Network.cpp │ └── Socket.cpp │ ├── Platform │ ├── Platform_LINUX.cpp │ ├── Platform_NULL.cpp │ ├── Platform_OSX.cpp │ └── Platform_WINDOWS.cpp │ ├── Threads │ ├── Mutex.cpp │ ├── Thread.cpp │ └── Utility.cpp │ ├── Types │ ├── Buffer.cpp │ ├── Math.cpp │ ├── String.cpp │ ├── String_Convert.cpp │ ├── String_Encode.cpp │ ├── String_File.cpp │ ├── String_Format.cpp │ ├── String_Sanitize.cpp │ ├── String_Test.cpp │ ├── String_To.cpp │ ├── String_URL.cpp │ └── String_Util.cpp │ └── Utility │ ├── CommandLine.cpp │ ├── Compression.cpp │ ├── CompressionLZMA.cpp │ ├── Hasher.cpp │ ├── PackFile.cpp │ ├── Processes.cpp │ └── Time.cpp ├── configsystem.cpp ├── configsystem.h ├── detouring ├── README.md └── customclassproxy.hpp ├── detours.cpp ├── detours.h ├── dllsystem.cpp ├── holylib.cpp ├── holyutil.cpp ├── httplib.h ├── ivp ├── havana │ ├── havana_constraints.vpc │ ├── havok │ │ ├── hk_base │ │ │ ├── array │ │ │ │ ├── array.cpp │ │ │ │ ├── array.h │ │ │ │ ├── array.inl │ │ │ │ └── pre_allocated_array.h │ │ │ ├── base.h │ │ │ ├── base_types.cpp │ │ │ ├── base_types.h │ │ │ ├── console.cpp │ │ │ ├── console.h │ │ │ ├── display.h │ │ │ ├── hash │ │ │ │ ├── hash.cpp │ │ │ │ ├── hash.h │ │ │ │ └── hash.inl │ │ │ ├── hk_base.dsp │ │ │ ├── hk_base.vpc │ │ │ ├── id_server │ │ │ │ ├── id_server.cpp │ │ │ │ ├── id_server.h │ │ │ │ └── id_server.inl │ │ │ ├── memory │ │ │ │ ├── memory.cpp │ │ │ │ ├── memory.h │ │ │ │ ├── memory.inl │ │ │ │ ├── memory_managed_virtual_class.h │ │ │ │ ├── memory_util.cpp │ │ │ │ └── memory_util.h │ │ │ ├── premake5.lua │ │ │ ├── stdafx.h │ │ │ ├── stopwatch │ │ │ │ ├── stopwatch.cpp │ │ │ │ ├── stopwatch.h │ │ │ │ └── stopwatch_qpt.inl │ │ │ ├── string │ │ │ │ ├── string.cpp │ │ │ │ └── string.h │ │ │ ├── util.h │ │ │ └── wscript │ │ ├── hk_math │ │ │ ├── base_math.h │ │ │ ├── dense_vector.cpp │ │ │ ├── dense_vector.h │ │ │ ├── dense_vector.inl │ │ │ ├── densematrix.cpp │ │ │ ├── densematrix.h │ │ │ ├── densematrix.inl │ │ │ ├── densematrix_util.cpp │ │ │ ├── densematrix_util.h │ │ │ ├── densematrix_util.inl │ │ │ ├── diagonal_matrix.h │ │ │ ├── eulerangles.cpp │ │ │ ├── eulerangles.h │ │ │ ├── gauss_elimination │ │ │ │ ├── gauss_elimination.cpp │ │ │ │ └── gauss_elimination.h │ │ │ ├── hk_math.dsp │ │ │ ├── hk_math.vpc │ │ │ ├── incr_lu │ │ │ │ ├── incr_lu.cpp │ │ │ │ └── incr_lu.h │ │ │ ├── interval.h │ │ │ ├── lcp │ │ │ │ ├── lcp_solver.cpp │ │ │ │ └── lcp_solver.h │ │ │ ├── math.cpp │ │ │ ├── math.inl │ │ │ ├── matrix │ │ │ │ └── matrix_inverter.h │ │ │ ├── matrix3.cpp │ │ │ ├── matrix3.h │ │ │ ├── matrix3.inl │ │ │ ├── odesolve.cpp │ │ │ ├── odesolve.h │ │ │ ├── plane.cpp │ │ │ ├── plane.h │ │ │ ├── plane.inl │ │ │ ├── premake5.lua │ │ │ ├── qtransform.h │ │ │ ├── qtransform.inl │ │ │ ├── quaternion │ │ │ │ ├── quaternion.cpp │ │ │ │ ├── quaternion.h │ │ │ │ ├── quaternion.inl │ │ │ │ ├── quaternion_util.cpp │ │ │ │ └── quaternion_util.h │ │ │ ├── ray.h │ │ │ ├── ray.inl │ │ │ ├── real_array_util.h │ │ │ ├── rotation.cpp │ │ │ ├── rotation.h │ │ │ ├── rotation.inl │ │ │ ├── spatial_matrix.cpp │ │ │ ├── spatial_matrix.h │ │ │ ├── spatial_matrix.inl │ │ │ ├── spatial_vector.cpp │ │ │ ├── spatial_vector.h │ │ │ ├── spatial_vector.inl │ │ │ ├── stdafx.h │ │ │ ├── transform.cpp │ │ │ ├── transform.h │ │ │ ├── transform.inl │ │ │ ├── types.h │ │ │ ├── vecmath.cpp │ │ │ ├── vecmath.h │ │ │ ├── vector3 │ │ │ │ ├── vector3.cpp │ │ │ │ ├── vector3.h │ │ │ │ ├── vector3.inl │ │ │ │ ├── vector3_util.cpp │ │ │ │ ├── vector3_util.h │ │ │ │ └── vector3_util.inl │ │ │ ├── vector4.cpp │ │ │ ├── vector4.h │ │ │ ├── vector4.inl │ │ │ ├── vector_fpu │ │ │ │ ├── vector_fpu.h │ │ │ │ └── vector_fpu.inl │ │ │ └── wscript │ │ ├── hk_mopp │ │ │ ├── ivp_compact_mopp.hxx │ │ │ ├── ivp_surbuild_mopp.hxx │ │ │ └── ivp_surman_mopp.hxx │ │ └── hk_physics │ │ │ ├── constraint │ │ │ ├── ball_socket │ │ │ │ ├── ball_socket_bp.h │ │ │ │ ├── ball_socket_constraint.cpp │ │ │ │ └── ball_socket_constraint.h │ │ │ ├── breakable_constraint │ │ │ │ ├── breakable_constraint.cpp │ │ │ │ ├── breakable_constraint.h │ │ │ │ └── breakable_constraint_bp.h │ │ │ ├── car_wheel │ │ │ │ ├── car_wheel_bp.h │ │ │ │ ├── car_wheel_constraint.cpp │ │ │ │ ├── car_wheel_constraint.h │ │ │ │ └── car_wheel_constraint.inl │ │ │ ├── constraint.cpp │ │ │ ├── constraint.h │ │ │ ├── constraint_bp.h │ │ │ ├── constraint_limit.h │ │ │ ├── fixed │ │ │ │ ├── fixed_bp.h │ │ │ │ ├── fixed_constraint.cpp │ │ │ │ └── fixed_constraint.h │ │ │ ├── hinge │ │ │ │ ├── hinge_bp.h │ │ │ │ ├── hinge_bp_builder.cpp │ │ │ │ ├── hinge_bp_builder.h │ │ │ │ ├── hinge_constraint.cpp │ │ │ │ └── hinge_constraint.h │ │ │ ├── limited_ball_socket │ │ │ │ ├── limited_ball_socket_bp.h │ │ │ │ ├── limited_ball_socket_constraint.cpp │ │ │ │ └── limited_ball_socket_constraint.h │ │ │ ├── local_constraint_system │ │ │ │ ├── local_constraint_system.cpp │ │ │ │ ├── local_constraint_system.h │ │ │ │ └── local_constraint_system_bp.h │ │ │ ├── prismatic │ │ │ │ ├── prismatic_bp.h │ │ │ │ ├── prismatic_constraint.cpp │ │ │ │ └── prismatic_constraint.h │ │ │ ├── pulley │ │ │ │ ├── pulley_bp.h │ │ │ │ ├── pulley_constraint.cpp │ │ │ │ └── pulley_constraint.h │ │ │ ├── ragdoll │ │ │ │ ├── ragdoll_constraint.cpp │ │ │ │ ├── ragdoll_constraint.h │ │ │ │ ├── ragdoll_constraint_bp.h │ │ │ │ ├── ragdoll_constraint_bp_builder.cpp │ │ │ │ └── ragdoll_constraint_bp_builder.h │ │ │ ├── stiff_spring │ │ │ │ ├── stiff_spring_bp.h │ │ │ │ ├── stiff_spring_constraint.cpp │ │ │ │ └── stiff_spring_constraint.h │ │ │ └── util │ │ │ │ └── constraint_limit_util.h │ │ │ ├── core │ │ │ ├── core.h │ │ │ ├── rigid_body_core.cpp │ │ │ ├── vm_query.h │ │ │ └── vm_query_builder │ │ │ │ ├── mass_relative_vector3.h │ │ │ │ └── vm_query_builder.h │ │ │ ├── effector │ │ │ └── rigid_body_binary_effector.cpp │ │ │ ├── physics.h │ │ │ ├── simunit │ │ │ └── psi_info.h │ │ │ └── types │ │ │ ├── blueprint.h │ │ │ ├── blueprint.inl │ │ │ ├── blueprint_types.h │ │ │ ├── manager.h │ │ │ ├── object.cpp │ │ │ ├── object.h │ │ │ ├── object.inl │ │ │ ├── sorted_set.cpp │ │ │ ├── sorted_set.h │ │ │ ├── types.cpp │ │ │ └── types.h │ └── premake5.lua ├── ivp_collision │ ├── ivp_3d_solver.cxx │ ├── ivp_3d_solver.hxx │ ├── ivp_cache_ledge_point.hxx │ ├── ivp_clustering_longrange.cxx │ ├── ivp_clustering_longrange.hxx │ ├── ivp_clustering_lrange_hash.cxx │ ├── ivp_clustering_lrange_hash.hxx │ ├── ivp_clustering_visual_hash.cxx │ ├── ivp_clustering_visual_hash.hxx │ ├── ivp_clustering_visualizer.cxx │ ├── ivp_clustering_visualizer.hxx │ ├── ivp_coll_del_root_mindist.cxx │ ├── ivp_collision.hxx │ ├── ivp_collision_filter.cxx │ ├── ivp_collision_filter.hxx │ ├── ivp_compact_ledge.cxx │ ├── ivp_compact_ledge.hxx │ ├── ivp_compact_ledge_solver.cxx │ ├── ivp_compact_ledge_solver.hxx │ ├── ivp_i_collision_vhash.cxx │ ├── ivp_i_collision_vhash.hxx │ ├── ivp_listener_collision.hxx │ ├── ivp_mindist.cxx │ ├── ivp_mindist.hxx │ ├── ivp_mindist_debug.cxx │ ├── ivp_mindist_event.cxx │ ├── ivp_mindist_event.hxx │ ├── ivp_mindist_intern.hxx │ ├── ivp_mindist_macros.hxx │ ├── ivp_mindist_mcases.cxx │ ├── ivp_mindist_minimize.cxx │ ├── ivp_mindist_minimize.hxx │ ├── ivp_mindist_recursive.cxx │ ├── ivp_oo_watcher.cxx │ ├── ivp_range_manager.cxx │ ├── ivp_range_manager.hxx │ ├── ivp_ray_solver.cxx │ ├── ivp_ray_solver.hxx │ ├── ivp_sphere_solver.cxx │ ├── ivp_sphere_solver.hxx │ └── ivp_universe_manager.hxx ├── ivp_compact_builder │ ├── 3dsimport_co.cxx │ ├── 3dsimport_load.cxx │ ├── 3dsimport_load.hxx │ ├── 3dsimport_out.cxx │ ├── geompack.hxx │ ├── geompack_cutfac.cxx │ ├── geompack_cvdec3.cxx │ ├── geompack_drdec3.cxx │ ├── geompack_dsphdc.cxx │ ├── geompack_edght.cxx │ ├── geompack_initcb.cxx │ ├── geompack_insed3.cxx │ ├── geompack_insfac.cxx │ ├── geompack_insvr3.cxx │ ├── geompack_prime.cxx │ ├── geompack_ptpolg.cxx │ ├── geompack_resedg.cxx │ ├── ivp_compact_ledge_gen.cxx │ ├── ivp_compact_ledge_gen.hxx │ ├── ivp_compact_modify.cxx │ ├── ivp_compact_modify.hxx │ ├── ivp_compact_recursive.cxx │ ├── ivp_compact_recursive.hxx │ ├── ivp_compactbuilder.vpc │ ├── ivp_convex_decompositor.cxx │ ├── ivp_convex_decompositor.hxx │ ├── ivp_halfspacesoup.cxx │ ├── ivp_halfspacesoup.hxx │ ├── ivp_i_fpoint_vhash.cxx │ ├── ivp_i_fpoint_vhash.hxx │ ├── ivp_i_point_vhash.cxx │ ├── ivp_i_point_vhash.hxx │ ├── ivp_object_polygon_tetra.cxx │ ├── ivp_object_polygon_tetra.hxx │ ├── ivp_rot_inertia_solver.cxx │ ├── ivp_rot_inertia_solver.hxx │ ├── ivp_surbuild_3ds.hxx │ ├── ivp_surbuild_halfspacesoup.cxx │ ├── ivp_surbuild_halfspacesoup.hxx │ ├── ivp_surbuild_ledge_soup.cxx │ ├── ivp_surbuild_ledge_soup.hxx │ ├── ivp_surbuild_pointsoup.cxx │ ├── ivp_surbuild_pointsoup.hxx │ ├── ivp_surbuild_polygon_convex.cxx │ ├── ivp_surbuild_polygon_convex.hxx │ ├── ivp_surbuild_polyhdrn_cncv.cxx │ ├── ivp_surbuild_polyhdrn_cncv.hxx │ ├── ivp_surbuild_q12.cxx │ ├── ivp_surbuild_q12.hxx │ ├── ivp_template_surbuild.hxx │ ├── ivp_templates_intern.cxx │ ├── ivp_templates_intern.hxx │ ├── ivp_tetra_intrude.cxx │ ├── ivp_tetra_intrude.hxx │ ├── ivp_triangle_gen.hxx │ ├── ivv_cluster_min_hash.cxx │ ├── ivv_cluster_min_hash.hxx │ ├── premake5.lua │ ├── qhull.cxx │ ├── qhull.hxx │ ├── qhull_a.hxx │ ├── qhull_geom.cxx │ ├── qhull_geom.hxx │ ├── qhull_geom2.cxx │ ├── qhull_global.cxx │ ├── qhull_io.cxx │ ├── qhull_io.hxx │ ├── qhull_mem.cxx │ ├── qhull_mem.hxx │ ├── qhull_merge.cxx │ ├── qhull_merge.hxx │ ├── qhull_poly.cxx │ ├── qhull_poly.hxx │ ├── qhull_poly2.cxx │ ├── qhull_qset.cxx │ ├── qhull_qset.hxx │ ├── qhull_stat.cxx │ ├── qhull_stat.hxx │ ├── qhull_user.cxx │ ├── qhull_user.hxx │ └── stdafx.h ├── ivp_controller │ ├── ivp_actuator.cxx │ ├── ivp_actuator.hxx │ ├── ivp_actuator_info.hxx │ ├── ivp_actuator_spring.cxx │ ├── ivp_actuator_spring.hxx │ ├── ivp_attacher_to_cores.hxx │ ├── ivp_buoyancy_solver.cxx │ ├── ivp_buoyancy_solver.hxx │ ├── ivp_car_system.cxx │ ├── ivp_car_system.hxx │ ├── ivp_constraint.cxx │ ├── ivp_constraint.hxx │ ├── ivp_constraint_car.cxx │ ├── ivp_constraint_car.hxx │ ├── ivp_constraint_fixed_keyed.cxx │ ├── ivp_constraint_fixed_keyed.hxx │ ├── ivp_constraint_local.cxx │ ├── ivp_constraint_local.hxx │ ├── ivp_constraint_types.hxx │ ├── ivp_controller.hxx │ ├── ivp_controller_airboat.cpp │ ├── ivp_controller_airboat.h │ ├── ivp_controller_buoyancy.cxx │ ├── ivp_controller_buoyancy.hxx │ ├── ivp_controller_fake_jetski.cpp │ ├── ivp_controller_fake_jetski.h │ ├── ivp_controller_floating.cxx │ ├── ivp_controller_floating.hxx │ ├── ivp_controller_golem.hxx │ ├── ivp_controller_motion.cxx │ ├── ivp_controller_motion.hxx │ ├── ivp_controller_raycast_car.cxx │ ├── ivp_controller_raycast_car.hxx │ ├── ivp_controller_stiff_spring.cxx │ ├── ivp_controller_stiff_spring.hxx │ ├── ivp_controller_world_frict.cxx │ ├── ivp_controller_world_frict.hxx │ ├── ivp_forcefield.cxx │ ├── ivp_forcefield.hxx │ ├── ivp_multidimensional_interp.cxx │ ├── ivp_multidimensional_interp.hxx │ ├── ivp_template_constraint.cxx │ └── ivp_template_constraint.hxx ├── ivp_docs │ ├── constraints user guide.pdf │ └── ivp_manual.rtf ├── ivp_intern │ ├── ivp_ball.cxx │ ├── ivp_calc_next_psi_solver.cxx │ ├── ivp_calc_next_psi_solver.hxx │ ├── ivp_controller_phantom.cxx │ ├── ivp_core.cxx │ ├── ivp_environment.cxx │ ├── ivp_friction.cxx │ ├── ivp_friction.hxx │ ├── ivp_friction_gaps.cxx │ ├── ivp_friction_solver.hxx │ ├── ivp_great_matrix.cxx │ ├── ivp_hull_manager.cxx │ ├── ivp_hull_manager_macros.hxx │ ├── ivp_i_controller_vhash.hxx │ ├── ivp_i_friction_hash.cxx │ ├── ivp_i_friction_hash.hxx │ ├── ivp_i_object_vhash.cxx │ ├── ivp_i_object_vhash.hxx │ ├── ivp_impact.cxx │ ├── ivp_impact.hxx │ ├── ivp_merge_core.cxx │ ├── ivp_merge_core.hxx │ ├── ivp_mindist_friction.cxx │ ├── ivp_object.cxx │ ├── ivp_object_attach.cxx │ ├── ivp_physic.cxx │ ├── ivp_physic_private.cxx │ ├── ivp_physic_private.hxx │ ├── ivp_polygon.cxx │ ├── ivp_sim_unit.cxx │ ├── ivp_sim_unit.hxx │ ├── ivp_solver_core_reaction.cxx │ └── ivp_time.cxx ├── ivp_physics │ ├── ive_graphics.hxx │ ├── ivp_anomaly_manager.cxx │ ├── ivp_anomaly_manager.hxx │ ├── ivp_authenticity.hxx │ ├── ivp_ball.hxx │ ├── ivp_betterdebugmanager.cxx │ ├── ivp_betterdebugmanager.hxx │ ├── ivp_betterstatisticsmanager.cxx │ ├── ivp_betterstatisticsmanager.hxx │ ├── ivp_cache_object.cxx │ ├── ivp_cache_object.hxx │ ├── ivp_contact_situation.hxx │ ├── ivp_core.hxx │ ├── ivp_core_macros.hxx │ ├── ivp_debug.hxx │ ├── ivp_debug_manager.hxx │ ├── ivp_environment.hxx │ ├── ivp_great_matrix.hxx │ ├── ivp_holylib.cxx │ ├── ivp_holylib.hxx │ ├── ivp_hull_manager.hxx │ ├── ivp_liquid_surface_descript.cxx │ ├── ivp_liquid_surface_descript.hxx │ ├── ivp_listener_hull.hxx │ ├── ivp_listener_object.hxx │ ├── ivp_listener_psi.hxx │ ├── ivp_material.cxx │ ├── ivp_material.hxx │ ├── ivp_object.hxx │ ├── ivp_object_attach.hxx │ ├── ivp_performancecounter.cxx │ ├── ivp_performancecounter.hxx │ ├── ivp_phantom.hxx │ ├── ivp_physics.hxx │ ├── ivp_physics.vpc │ ├── ivp_polygon.hxx │ ├── ivp_radar.hxx │ ├── ivp_radar_appl.hxx │ ├── ivp_real_object.hxx │ ├── ivp_solver_core_reaction.hxx │ ├── ivp_stat_manager_cback_con.cxx │ ├── ivp_stat_manager_cback_con.hxx │ ├── ivp_surface_manager.cxx │ ├── ivp_surface_manager.hxx │ ├── ivp_templates.cxx │ ├── ivp_templates.hxx │ ├── ivp_time.hxx │ ├── ivp_time_event.hxx │ └── premake5.lua ├── ivp_surface_manager │ ├── ivp_compact_grid.hxx │ ├── ivp_compact_surface.cxx │ ├── ivp_compact_surface.hxx │ ├── ivp_gridbuild_array.cxx │ ├── ivp_gridbuild_array.hxx │ ├── ivp_surman_grid.cxx │ ├── ivp_surman_grid.hxx │ ├── ivp_surman_polygon.cxx │ └── ivp_surman_polygon.hxx ├── ivp_utility │ ├── ivu_active_value.cxx │ ├── ivu_active_value.hxx │ ├── ivu_active_value_hash.hxx │ ├── ivu_bigvector.cxx │ ├── ivu_bigvector.hxx │ ├── ivu_diff_hash.hxx │ ├── ivu_float.hxx │ ├── ivu_fvector.hxx │ ├── ivu_geometry.cxx │ ├── ivu_geometry.hxx │ ├── ivu_hash.cxx │ ├── ivu_hash.hxx │ ├── ivu_linear.cxx │ ├── ivu_linear.hxx │ ├── ivu_linear_double.hxx │ ├── ivu_linear_macros.hxx │ ├── ivu_linear_piii.hxx │ ├── ivu_linear_ps2.hxx │ ├── ivu_linear_software.hxx │ ├── ivu_linear_willamette.hxx │ ├── ivu_list.hxx │ ├── ivu_mapping.cxx │ ├── ivu_mapping.hxx │ ├── ivu_matrix_macros.hxx │ ├── ivu_memory.cxx │ ├── ivu_memory.hxx │ ├── ivu_min_hash.cxx │ ├── ivu_min_hash.hxx │ ├── ivu_min_list.cxx │ ├── ivu_min_list.hxx │ ├── ivu_os_dep.cxx │ ├── ivu_ps2.hxx │ ├── ivu_quat.cxx │ ├── ivu_quat.hxx │ ├── ivu_set.hxx │ ├── ivu_string.cxx │ ├── ivu_string.hxx │ ├── ivu_string_hash.hxx │ ├── ivu_types.cxx │ ├── ivu_types.hxx │ ├── ivu_vector.cxx │ ├── ivu_vector.hxx │ ├── ivu_vhash.cxx │ ├── ivu_vhash.hxx │ └── shortestdistanceutil.h ├── ivp_workspaces_src │ ├── ipion_internal_workspace.dsw │ └── win32 │ │ ├── demo_executable.dsp │ │ ├── havana_constraints.dsp │ │ ├── havana_constraints.dsw │ │ ├── hull_editor.dsp │ │ ├── internal_project.dsp │ │ ├── internal_project_nogfx.dsp │ │ ├── ivp_compactbuilder_lib.dsp │ │ ├── ivp_graphics_lib.dsp │ │ └── ivp_physics_lib.dsp ├── premake5.lua └── vphysics │ ├── cbase.h │ ├── convert.cpp │ ├── convert.h │ ├── dll_main.cpp │ ├── ledgewriter.cpp │ ├── ledgewriter.h │ ├── linear_solver.cpp │ ├── linear_solver.h │ ├── main.cpp │ ├── physics_airboat.cpp │ ├── physics_airboat.h │ ├── physics_collide.cpp │ ├── physics_constraint.cpp │ ├── physics_constraint.h │ ├── physics_controller_raycast_vehicle.cpp │ ├── physics_controller_raycast_vehicle.h │ ├── physics_environment.cpp │ ├── physics_environment.h │ ├── physics_fluid.cpp │ ├── physics_fluid.h │ ├── physics_friction.cpp │ ├── physics_friction.h │ ├── physics_holylib.cpp │ ├── physics_holylib.h │ ├── physics_material.cpp │ ├── physics_material.h │ ├── physics_motioncontroller.cpp │ ├── physics_motioncontroller.h │ ├── physics_object.cpp │ ├── physics_object.h │ ├── physics_shadow.cpp │ ├── physics_shadow.h │ ├── physics_spring.cpp │ ├── physics_spring.h │ ├── physics_trace.h │ ├── physics_vehicle.cpp │ ├── physics_vehicle.h │ ├── physics_virtualmesh.cpp │ ├── physics_virtualmesh.h │ ├── premake5.lua │ ├── resource.h │ ├── stdafx.cpp │ ├── trace.cpp │ ├── vcollide_parse.cpp │ ├── vcollide_parse_private.h │ ├── vphysics.vpc │ ├── vphysics_internal.h │ ├── vphysics_saverestore.cpp │ └── vphysics_saverestore.h ├── lua.cpp ├── lua.h ├── lua ├── CLuaGameCallback.cpp ├── CLuaInterface.cpp ├── CLuaInterface.h ├── ILuaInterface.h ├── PooledStrings.h └── scripts │ ├── .gitignore │ ├── AngleFFI.lua │ ├── HolyLibUserDataFFI.lua │ ├── README.md │ ├── VectorFFI.lua │ └── VoiceDataFFI.lua ├── lz4 ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── liblz4-dll.rc.in ├── liblz4.pc.in ├── lz4.c ├── lz4.h ├── lz4_compression.cpp ├── lz4_compression.h ├── lz4file.c ├── lz4file.h ├── lz4frame.c ├── lz4frame.h ├── lz4frame_static.h ├── lz4hc.c ├── lz4hc.h ├── xxhash.c └── xxhash.h ├── module.cpp ├── module.h ├── modules ├── autorefresh.cpp ├── bass.cpp ├── bitbuf.cpp ├── concommand.cpp ├── cvars.cpp ├── entitylist.cpp ├── filesystem.cpp ├── gameevent.cpp ├── gameserver.cpp ├── holylib.cpp ├── holylua.cpp ├── httpserver.cpp ├── luajit.cpp ├── luathreads.cpp ├── net.cpp ├── networking.cpp ├── networkingreplacement.cpp ├── networkthreading.cpp ├── nw.cpp ├── pas.cpp ├── physenv.cpp ├── precachefix.cpp ├── pvs.cpp ├── serverplugins.cpp ├── soundscape.cpp ├── sourcetv.cpp ├── steamworks.cpp ├── stringtable.cpp ├── surffix.cpp ├── systimer.cpp ├── template.c++ ├── util.cpp ├── voicechat.cpp └── vprof.cpp ├── opus ├── LICENSE.txt ├── README.md ├── include │ ├── opus.h │ ├── opus_custom.h │ ├── opus_defines.h │ ├── opus_multistream.h │ ├── opus_projection.h │ └── opus_types.h ├── ivoicecodec.h ├── opus_framedecoder.h └── steam_voice.h ├── plugin.cpp ├── plugin.h ├── public ├── README.md ├── iconfigsystem.h ├── iholylib.h ├── iholyutil.h └── imodule.h ├── rawlua.cpp ├── sourcesdk ├── GameEventManager.h ├── IGmod_Audio.h ├── README.md ├── baseclient.h ├── baseclientstate.h ├── baseentity.cpp ├── baseserver.h ├── bass.h ├── bassenc.h ├── bassenc_flac.h ├── bassenc_mp3.h ├── bassenc_ogg.h ├── bassenc_opus.h ├── bassmix.h ├── c_baseentity.h ├── cgmod_audio.cpp ├── cgmod_audio.h ├── clientframe.h ├── clockdriftmgr.h ├── cmd.h ├── cmodel_private.h ├── cnetchan.cpp ├── cnetchan.h ├── common.h ├── custom_net_chan.h ├── demo.h ├── demofile.h ├── dt.h ├── dt_encode.h ├── dt_recv_decoder.h ├── dt_recv_eng.h ├── dt_send_eng.h ├── dt_stack.h ├── enginesingleuserfilter.h ├── event_system.h ├── filesystem_things.h ├── framesnapshot.h ├── gameeventmanager.cpp ├── gameinterface.cpp ├── gamemovement.h ├── gl_model.h ├── hltvclient.h ├── hltvclientstate.h ├── hltvdemo.h ├── hltvdirector.cpp ├── hltvdirector.h ├── hltvserver.h ├── host_state.h ├── iluashared.h ├── iserverplugin.h ├── ivp_old │ ├── cphysicsenvironment.h │ ├── cphysicsobject.h │ ├── ivp_classes.h │ ├── ivp_time.h │ └── ivp_types.h ├── linux_support.h ├── modelloader.h ├── net.h ├── net_chan.h ├── netadr_new.cpp ├── netadr_new.h ├── netmessages.cpp ├── netmessages.h ├── networkstringtable.h ├── networkstringtableitem.h ├── networksystem │ └── inetworksystem.h ├── otherstuff.cpp ├── packed_entity.h ├── precache.cpp ├── precache.h ├── proto_oob.h ├── protocol.h ├── quakedef.h ├── recipientfilter.cpp ├── render.h ├── server.h ├── steamcommon.h ├── stringregistry.cpp ├── sv_client.h ├── sv_plugin.h ├── sv_steamauth.h ├── sysexternal.h ├── tier2.cpp ├── tier2.h └── usermessages.cpp ├── symbols.cpp ├── symbols.h ├── util.cpp ├── util.h └── versioninfo.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/compile-ghostinj.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/.github/workflows/compile-ghostinj.yml -------------------------------------------------------------------------------- /.github/workflows/compile-luajit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/.github/workflows/compile-luajit.yml -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.github/workflows/compile_custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/.github/workflows/compile_custom.yml -------------------------------------------------------------------------------- /.github/workflows/compile_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/.github/workflows/compile_release.yml -------------------------------------------------------------------------------- /.github/workflows/show_summary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/.github/workflows/show_summary.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/BUILD.md -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: RaphaelIT7 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/README.md -------------------------------------------------------------------------------- /development/module/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/development/module/.gitattributes -------------------------------------------------------------------------------- /development/module/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | premake5 vs2022 4 | pause -------------------------------------------------------------------------------- /development/module/premake5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/development/module/premake5 -------------------------------------------------------------------------------- /development/module/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/development/module/premake5.exe -------------------------------------------------------------------------------- /development/module/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/development/module/premake5.lua -------------------------------------------------------------------------------- /development/module/premake5.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/development/module/premake5.pdb -------------------------------------------------------------------------------- /example-module-dll/.gitignore: -------------------------------------------------------------------------------- 1 | projects/** -------------------------------------------------------------------------------- /example-module-dll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/example-module-dll/README.md -------------------------------------------------------------------------------- /example-module-dll/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | premake5 vs2022 4 | pause -------------------------------------------------------------------------------- /example-module-dll/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/example-module-dll/premake5.exe -------------------------------------------------------------------------------- /example-module-dll/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/example-module-dll/premake5.lua -------------------------------------------------------------------------------- /example-module-dll/source/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/example-module-dll/source/example.cpp -------------------------------------------------------------------------------- /example-module-dll/source/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/example-module-dll/source/public/README.md -------------------------------------------------------------------------------- /example-module-dll/source/public/iholylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/example-module-dll/source/public/iholylib.h -------------------------------------------------------------------------------- /example-module-dll/source/public/iholyutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/example-module-dll/source/public/iholyutil.h -------------------------------------------------------------------------------- /example-module-dll/source/public/imodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/example-module-dll/source/public/imodule.h -------------------------------------------------------------------------------- /example-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/example-scripts/README.md -------------------------------------------------------------------------------- /example-scripts/networkchannel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/example-scripts/networkchannel.lua -------------------------------------------------------------------------------- /example-scripts/streamed_voicestream.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/example-scripts/streamed_voicestream.lua -------------------------------------------------------------------------------- /ghostinj-dll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/ghostinj-dll/README.md -------------------------------------------------------------------------------- /ghostinj-dll/build.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | premake5 vs2022 4 | pause -------------------------------------------------------------------------------- /ghostinj-dll/ghostinj.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/ghostinj-dll/ghostinj.dll -------------------------------------------------------------------------------- /ghostinj-dll/overrides.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/ghostinj-dll/overrides.lua -------------------------------------------------------------------------------- /ghostinj-dll/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/ghostinj-dll/premake5.exe -------------------------------------------------------------------------------- /ghostinj-dll/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/ghostinj-dll/premake5.lua -------------------------------------------------------------------------------- /ghostinj-dll/source/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/ghostinj-dll/source/dll.cpp -------------------------------------------------------------------------------- /gluatests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/README.md -------------------------------------------------------------------------------- /gluatests/binaries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/binaries/README.md -------------------------------------------------------------------------------- /gluatests/binaries/gmsv_reqwest_linux.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/binaries/gmsv_reqwest_linux.dll -------------------------------------------------------------------------------- /gluatests/binaries/gmsv_reqwest_linux64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/binaries/gmsv_reqwest_linux64.dll -------------------------------------------------------------------------------- /gluatests/lua/autorun/gmod_tests_init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/autorun/gmod_tests_init.lua -------------------------------------------------------------------------------- /gluatests/lua/gmod_tests/sh_init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/gmod_tests/sh_init.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/core/ClearLuaTable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/core/ClearLuaTable.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/core/GetEntity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/core/GetEntity.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/core/GetGModUserData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/core/GetGModUserData.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/core/GetModuleData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/core/GetModuleData.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/core/GetPlayer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/core/GetPlayer.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/core/GetUserData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/core/GetUserData.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/core/Loaded.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/core/Loaded.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/core/PushEntity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/core/PushEntity.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/core/PushUserData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/core/PushUserData.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/dlls/Loaded.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/dlls/Loaded.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/modules/bass/PlayFile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/modules/bass/PlayFile.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/modules/bass/PlayUrl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/modules/bass/PlayUrl.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/modules/cvars/Find.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/modules/cvars/Find.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/modules/cvars/GetAll.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/modules/cvars/GetAll.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/modules/cvars/SetValue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/modules/cvars/SetValue.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/modules/filesystem/Size.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/modules/filesystem/Size.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/modules/filesystem/Time.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/modules/filesystem/Time.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/modules/pas/FindInPAS.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/modules/pas/FindInPAS.lua -------------------------------------------------------------------------------- /gluatests/lua/tests/modules/pvs/FindInPVS.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/lua/tests/modules/pvs/FindInPVS.lua -------------------------------------------------------------------------------- /gluatests/maps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/maps/README.md -------------------------------------------------------------------------------- /gluatests/maps/gm_glua_tests.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/maps/gm_glua_tests.bsp -------------------------------------------------------------------------------- /gluatests/sound/bass_testsound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/gluatests/sound/bass_testsound.wav -------------------------------------------------------------------------------- /gluatests/sound/not_real.txt: -------------------------------------------------------------------------------- 1 | bruh -------------------------------------------------------------------------------- /gluatests/test.folder/folder2/placeholder.txt: -------------------------------------------------------------------------------- 1 | Nothing :3 -------------------------------------------------------------------------------- /gluatests/test.folder/placeholder.txt: -------------------------------------------------------------------------------- 1 | Nothing :3 -------------------------------------------------------------------------------- /holylib.vdf: -------------------------------------------------------------------------------- 1 | Plugin 2 | { 3 | file "lua/bin/gmsv_holylib_linux.so" 4 | } -------------------------------------------------------------------------------- /holylib_64.vdf: -------------------------------------------------------------------------------- 1 | Plugin 2 | { 3 | file "lua/bin/gmsv_holylib_linux64.so" 4 | } -------------------------------------------------------------------------------- /latest_version.txt: -------------------------------------------------------------------------------- 1 | 0.6.1 2 | 1225 -------------------------------------------------------------------------------- /libs/linux32/libbass.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/linux32/libbass.so -------------------------------------------------------------------------------- /libs/linux32/libluajit_32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/linux32/libluajit_32.a -------------------------------------------------------------------------------- /libs/linux32/libopus_32.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/linux32/libopus_32.a -------------------------------------------------------------------------------- /libs/linux64/libbass.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/linux64/libbass.so -------------------------------------------------------------------------------- /libs/linux64/libluajit_64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/linux64/libluajit_64.a -------------------------------------------------------------------------------- /libs/linux64/libopus_64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/linux64/libopus_64.a -------------------------------------------------------------------------------- /libs/win32/bass_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/win32/bass_32.lib -------------------------------------------------------------------------------- /libs/win32/lua51_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/win32/lua51_32.lib -------------------------------------------------------------------------------- /libs/win32/opus_32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/win32/opus_32.lib -------------------------------------------------------------------------------- /libs/win64/bass_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/win64/bass_64.lib -------------------------------------------------------------------------------- /libs/win64/lua51_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/win64/lua51_64.lib -------------------------------------------------------------------------------- /libs/win64/opus_64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/libs/win64/opus_64.lib -------------------------------------------------------------------------------- /luajit/.gitattributes: -------------------------------------------------------------------------------- 1 | /.relver export-subst 2 | -------------------------------------------------------------------------------- /luajit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/.gitignore -------------------------------------------------------------------------------- /luajit/.relver: -------------------------------------------------------------------------------- 1 | 1753364724 2 | -------------------------------------------------------------------------------- /luajit/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/COPYRIGHT -------------------------------------------------------------------------------- /luajit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/Makefile -------------------------------------------------------------------------------- /luajit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/README -------------------------------------------------------------------------------- /luajit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/README.md -------------------------------------------------------------------------------- /luajit/dynasm/dasm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_arm.h -------------------------------------------------------------------------------- /luajit/dynasm/dasm_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_arm.lua -------------------------------------------------------------------------------- /luajit/dynasm/dasm_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_arm64.h -------------------------------------------------------------------------------- /luajit/dynasm/dasm_arm64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_arm64.lua -------------------------------------------------------------------------------- /luajit/dynasm/dasm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_mips.h -------------------------------------------------------------------------------- /luajit/dynasm/dasm_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_mips.lua -------------------------------------------------------------------------------- /luajit/dynasm/dasm_mips64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_mips64.lua -------------------------------------------------------------------------------- /luajit/dynasm/dasm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_ppc.h -------------------------------------------------------------------------------- /luajit/dynasm/dasm_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_ppc.lua -------------------------------------------------------------------------------- /luajit/dynasm/dasm_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_proto.h -------------------------------------------------------------------------------- /luajit/dynasm/dasm_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_x64.lua -------------------------------------------------------------------------------- /luajit/dynasm/dasm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_x86.h -------------------------------------------------------------------------------- /luajit/dynasm/dasm_x86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dasm_x86.lua -------------------------------------------------------------------------------- /luajit/dynasm/dynasm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/dynasm/dynasm.lua -------------------------------------------------------------------------------- /luajit/etc/luajit.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/etc/luajit.1 -------------------------------------------------------------------------------- /luajit/etc/luajit.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/etc/luajit.pc -------------------------------------------------------------------------------- /luajit/luajit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/luajit -------------------------------------------------------------------------------- /luajit/src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/.gitignore -------------------------------------------------------------------------------- /luajit/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/Makefile -------------------------------------------------------------------------------- /luajit/src/Makefile.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/Makefile.dep -------------------------------------------------------------------------------- /luajit/src/gmod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/gmod.cpp -------------------------------------------------------------------------------- /luajit/src/gmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/gmod.h -------------------------------------------------------------------------------- /luajit/src/host/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/.gitignore -------------------------------------------------------------------------------- /luajit/src/host/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/README -------------------------------------------------------------------------------- /luajit/src/host/buildvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/buildvm.c -------------------------------------------------------------------------------- /luajit/src/host/buildvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/buildvm.h -------------------------------------------------------------------------------- /luajit/src/host/buildvm_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/buildvm_asm.c -------------------------------------------------------------------------------- /luajit/src/host/buildvm_fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/buildvm_fold.c -------------------------------------------------------------------------------- /luajit/src/host/buildvm_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/buildvm_lib.c -------------------------------------------------------------------------------- /luajit/src/host/buildvm_libbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/buildvm_libbc.h -------------------------------------------------------------------------------- /luajit/src/host/buildvm_peobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/buildvm_peobj.c -------------------------------------------------------------------------------- /luajit/src/host/genlibbc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/genlibbc.lua -------------------------------------------------------------------------------- /luajit/src/host/genminilua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/genminilua.lua -------------------------------------------------------------------------------- /luajit/src/host/genversion.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/genversion.lua -------------------------------------------------------------------------------- /luajit/src/host/minilua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/host/minilua.c -------------------------------------------------------------------------------- /luajit/src/jit/.gitignore: -------------------------------------------------------------------------------- 1 | vmdef.lua 2 | -------------------------------------------------------------------------------- /luajit/src/jit/bc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/bc.lua -------------------------------------------------------------------------------- /luajit/src/jit/bcsave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/bcsave.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_arm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_arm.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_arm64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_arm64.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_arm64be.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_arm64be.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_mips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_mips.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_mips64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_mips64.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_mips64el.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_mips64el.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_mips64r6.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_mips64r6.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_mips64r6el.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_mips64r6el.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_mipsel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_mipsel.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_ppc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_ppc.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_x64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_x64.lua -------------------------------------------------------------------------------- /luajit/src/jit/dis_x86.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dis_x86.lua -------------------------------------------------------------------------------- /luajit/src/jit/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/dump.lua -------------------------------------------------------------------------------- /luajit/src/jit/p.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/p.lua -------------------------------------------------------------------------------- /luajit/src/jit/v.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/v.lua -------------------------------------------------------------------------------- /luajit/src/jit/zone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/jit/zone.lua -------------------------------------------------------------------------------- /luajit/src/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lauxlib.h -------------------------------------------------------------------------------- /luajit/src/lib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_aux.c -------------------------------------------------------------------------------- /luajit/src/lib_base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_base.c -------------------------------------------------------------------------------- /luajit/src/lib_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_bit.c -------------------------------------------------------------------------------- /luajit/src/lib_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_buffer.c -------------------------------------------------------------------------------- /luajit/src/lib_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_debug.c -------------------------------------------------------------------------------- /luajit/src/lib_ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_ffi.c -------------------------------------------------------------------------------- /luajit/src/lib_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_init.c -------------------------------------------------------------------------------- /luajit/src/lib_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_io.c -------------------------------------------------------------------------------- /luajit/src/lib_jit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_jit.c -------------------------------------------------------------------------------- /luajit/src/lib_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_math.c -------------------------------------------------------------------------------- /luajit/src/lib_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_os.c -------------------------------------------------------------------------------- /luajit/src/lib_package.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_package.c -------------------------------------------------------------------------------- /luajit/src/lib_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_string.c -------------------------------------------------------------------------------- /luajit/src/lib_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lib_table.c -------------------------------------------------------------------------------- /luajit/src/lj_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_alloc.c -------------------------------------------------------------------------------- /luajit/src/lj_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_alloc.h -------------------------------------------------------------------------------- /luajit/src/lj_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_api.c -------------------------------------------------------------------------------- /luajit/src/lj_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_arch.h -------------------------------------------------------------------------------- /luajit/src/lj_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_asm.c -------------------------------------------------------------------------------- /luajit/src/lj_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_asm.h -------------------------------------------------------------------------------- /luajit/src/lj_asm_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_asm_arm.h -------------------------------------------------------------------------------- /luajit/src/lj_asm_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_asm_arm64.h -------------------------------------------------------------------------------- /luajit/src/lj_asm_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_asm_mips.h -------------------------------------------------------------------------------- /luajit/src/lj_asm_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_asm_ppc.h -------------------------------------------------------------------------------- /luajit/src/lj_asm_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_asm_x86.h -------------------------------------------------------------------------------- /luajit/src/lj_assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_assert.c -------------------------------------------------------------------------------- /luajit/src/lj_bc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_bc.c -------------------------------------------------------------------------------- /luajit/src/lj_bc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_bc.h -------------------------------------------------------------------------------- /luajit/src/lj_bcdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_bcdump.h -------------------------------------------------------------------------------- /luajit/src/lj_bcread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_bcread.c -------------------------------------------------------------------------------- /luajit/src/lj_bcwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_bcwrite.c -------------------------------------------------------------------------------- /luajit/src/lj_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_buf.c -------------------------------------------------------------------------------- /luajit/src/lj_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_buf.h -------------------------------------------------------------------------------- /luajit/src/lj_carith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_carith.c -------------------------------------------------------------------------------- /luajit/src/lj_carith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_carith.h -------------------------------------------------------------------------------- /luajit/src/lj_ccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ccall.c -------------------------------------------------------------------------------- /luajit/src/lj_ccall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ccall.h -------------------------------------------------------------------------------- /luajit/src/lj_ccallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ccallback.c -------------------------------------------------------------------------------- /luajit/src/lj_ccallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ccallback.h -------------------------------------------------------------------------------- /luajit/src/lj_cconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_cconv.c -------------------------------------------------------------------------------- /luajit/src/lj_cconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_cconv.h -------------------------------------------------------------------------------- /luajit/src/lj_cdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_cdata.c -------------------------------------------------------------------------------- /luajit/src/lj_cdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_cdata.h -------------------------------------------------------------------------------- /luajit/src/lj_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_char.c -------------------------------------------------------------------------------- /luajit/src/lj_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_char.h -------------------------------------------------------------------------------- /luajit/src/lj_clib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_clib.c -------------------------------------------------------------------------------- /luajit/src/lj_clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_clib.h -------------------------------------------------------------------------------- /luajit/src/lj_cparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_cparse.c -------------------------------------------------------------------------------- /luajit/src/lj_cparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_cparse.h -------------------------------------------------------------------------------- /luajit/src/lj_crecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_crecord.c -------------------------------------------------------------------------------- /luajit/src/lj_crecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_crecord.h -------------------------------------------------------------------------------- /luajit/src/lj_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ctype.c -------------------------------------------------------------------------------- /luajit/src/lj_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ctype.h -------------------------------------------------------------------------------- /luajit/src/lj_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_debug.c -------------------------------------------------------------------------------- /luajit/src/lj_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_debug.h -------------------------------------------------------------------------------- /luajit/src/lj_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_def.h -------------------------------------------------------------------------------- /luajit/src/lj_dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_dispatch.c -------------------------------------------------------------------------------- /luajit/src/lj_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_dispatch.h -------------------------------------------------------------------------------- /luajit/src/lj_emit_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_emit_arm.h -------------------------------------------------------------------------------- /luajit/src/lj_emit_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_emit_arm64.h -------------------------------------------------------------------------------- /luajit/src/lj_emit_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_emit_mips.h -------------------------------------------------------------------------------- /luajit/src/lj_emit_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_emit_ppc.h -------------------------------------------------------------------------------- /luajit/src/lj_emit_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_emit_x86.h -------------------------------------------------------------------------------- /luajit/src/lj_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_err.c -------------------------------------------------------------------------------- /luajit/src/lj_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_err.h -------------------------------------------------------------------------------- /luajit/src/lj_errmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_errmsg.h -------------------------------------------------------------------------------- /luajit/src/lj_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ff.h -------------------------------------------------------------------------------- /luajit/src/lj_ffrecord.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ffrecord.c -------------------------------------------------------------------------------- /luajit/src/lj_ffrecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ffrecord.h -------------------------------------------------------------------------------- /luajit/src/lj_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_frame.h -------------------------------------------------------------------------------- /luajit/src/lj_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_func.c -------------------------------------------------------------------------------- /luajit/src/lj_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_func.h -------------------------------------------------------------------------------- /luajit/src/lj_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_gc.c -------------------------------------------------------------------------------- /luajit/src/lj_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_gc.h -------------------------------------------------------------------------------- /luajit/src/lj_gdbjit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_gdbjit.c -------------------------------------------------------------------------------- /luajit/src/lj_gdbjit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_gdbjit.h -------------------------------------------------------------------------------- /luajit/src/lj_ir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ir.c -------------------------------------------------------------------------------- /luajit/src/lj_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ir.h -------------------------------------------------------------------------------- /luajit/src/lj_ircall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_ircall.h -------------------------------------------------------------------------------- /luajit/src/lj_iropt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_iropt.h -------------------------------------------------------------------------------- /luajit/src/lj_jit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_jit.h -------------------------------------------------------------------------------- /luajit/src/lj_lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_lex.c -------------------------------------------------------------------------------- /luajit/src/lj_lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_lex.h -------------------------------------------------------------------------------- /luajit/src/lj_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_lib.c -------------------------------------------------------------------------------- /luajit/src/lj_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_lib.h -------------------------------------------------------------------------------- /luajit/src/lj_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_load.c -------------------------------------------------------------------------------- /luajit/src/lj_mcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_mcode.c -------------------------------------------------------------------------------- /luajit/src/lj_mcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_mcode.h -------------------------------------------------------------------------------- /luajit/src/lj_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_meta.c -------------------------------------------------------------------------------- /luajit/src/lj_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_meta.h -------------------------------------------------------------------------------- /luajit/src/lj_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_obj.c -------------------------------------------------------------------------------- /luajit/src/lj_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_obj.h -------------------------------------------------------------------------------- /luajit/src/lj_opt_dce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_opt_dce.c -------------------------------------------------------------------------------- /luajit/src/lj_opt_fold.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_opt_fold.c -------------------------------------------------------------------------------- /luajit/src/lj_opt_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_opt_loop.c -------------------------------------------------------------------------------- /luajit/src/lj_opt_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_opt_mem.c -------------------------------------------------------------------------------- /luajit/src/lj_opt_narrow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_opt_narrow.c -------------------------------------------------------------------------------- /luajit/src/lj_opt_sink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_opt_sink.c -------------------------------------------------------------------------------- /luajit/src/lj_opt_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_opt_split.c -------------------------------------------------------------------------------- /luajit/src/lj_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_parse.c -------------------------------------------------------------------------------- /luajit/src/lj_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_parse.h -------------------------------------------------------------------------------- /luajit/src/lj_prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_prng.c -------------------------------------------------------------------------------- /luajit/src/lj_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_prng.h -------------------------------------------------------------------------------- /luajit/src/lj_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_profile.c -------------------------------------------------------------------------------- /luajit/src/lj_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_profile.h -------------------------------------------------------------------------------- /luajit/src/lj_record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_record.c -------------------------------------------------------------------------------- /luajit/src/lj_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_record.h -------------------------------------------------------------------------------- /luajit/src/lj_serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_serialize.c -------------------------------------------------------------------------------- /luajit/src/lj_serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_serialize.h -------------------------------------------------------------------------------- /luajit/src/lj_snap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_snap.c -------------------------------------------------------------------------------- /luajit/src/lj_snap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_snap.h -------------------------------------------------------------------------------- /luajit/src/lj_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_state.c -------------------------------------------------------------------------------- /luajit/src/lj_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_state.h -------------------------------------------------------------------------------- /luajit/src/lj_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_str.c -------------------------------------------------------------------------------- /luajit/src/lj_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_str.h -------------------------------------------------------------------------------- /luajit/src/lj_strfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_strfmt.c -------------------------------------------------------------------------------- /luajit/src/lj_strfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_strfmt.h -------------------------------------------------------------------------------- /luajit/src/lj_strfmt_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_strfmt_num.c -------------------------------------------------------------------------------- /luajit/src/lj_strscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_strscan.c -------------------------------------------------------------------------------- /luajit/src/lj_strscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_strscan.h -------------------------------------------------------------------------------- /luajit/src/lj_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_tab.c -------------------------------------------------------------------------------- /luajit/src/lj_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_tab.h -------------------------------------------------------------------------------- /luajit/src/lj_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_target.h -------------------------------------------------------------------------------- /luajit/src/lj_target_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_target_arm.h -------------------------------------------------------------------------------- /luajit/src/lj_target_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_target_arm64.h -------------------------------------------------------------------------------- /luajit/src/lj_target_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_target_mips.h -------------------------------------------------------------------------------- /luajit/src/lj_target_ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_target_ppc.h -------------------------------------------------------------------------------- /luajit/src/lj_target_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_target_x86.h -------------------------------------------------------------------------------- /luajit/src/lj_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_trace.c -------------------------------------------------------------------------------- /luajit/src/lj_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_trace.h -------------------------------------------------------------------------------- /luajit/src/lj_traceerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_traceerr.h -------------------------------------------------------------------------------- /luajit/src/lj_udata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_udata.c -------------------------------------------------------------------------------- /luajit/src/lj_udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_udata.h -------------------------------------------------------------------------------- /luajit/src/lj_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_vm.h -------------------------------------------------------------------------------- /luajit/src/lj_vmevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_vmevent.c -------------------------------------------------------------------------------- /luajit/src/lj_vmevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_vmevent.h -------------------------------------------------------------------------------- /luajit/src/lj_vmmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lj_vmmath.c -------------------------------------------------------------------------------- /luajit/src/ljamalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/ljamalg.c -------------------------------------------------------------------------------- /luajit/src/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lua.h -------------------------------------------------------------------------------- /luajit/src/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lua.hpp -------------------------------------------------------------------------------- /luajit/src/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/luaconf.h -------------------------------------------------------------------------------- /luajit/src/luajit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/luajit.c -------------------------------------------------------------------------------- /luajit/src/luajit_rolling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/luajit_rolling.h -------------------------------------------------------------------------------- /luajit/src/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/lualib.h -------------------------------------------------------------------------------- /luajit/src/msvcbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/msvcbuild.bat -------------------------------------------------------------------------------- /luajit/src/msvcbuild_86.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/msvcbuild_86.bat -------------------------------------------------------------------------------- /luajit/src/nxbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/nxbuild.bat -------------------------------------------------------------------------------- /luajit/src/ps4build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/ps4build.bat -------------------------------------------------------------------------------- /luajit/src/ps5build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/ps5build.bat -------------------------------------------------------------------------------- /luajit/src/psvitabuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/psvitabuild.bat -------------------------------------------------------------------------------- /luajit/src/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/test.lua -------------------------------------------------------------------------------- /luajit/src/vm_arm.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/vm_arm.dasc -------------------------------------------------------------------------------- /luajit/src/vm_arm64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/vm_arm64.dasc -------------------------------------------------------------------------------- /luajit/src/vm_mips.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/vm_mips.dasc -------------------------------------------------------------------------------- /luajit/src/vm_mips64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/vm_mips64.dasc -------------------------------------------------------------------------------- /luajit/src/vm_ppc.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/vm_ppc.dasc -------------------------------------------------------------------------------- /luajit/src/vm_x64.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/vm_x64.dasc -------------------------------------------------------------------------------- /luajit/src/vm_x86.dasc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/vm_x86.dasc -------------------------------------------------------------------------------- /luajit/src/xb1build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/xb1build.bat -------------------------------------------------------------------------------- /luajit/src/xedkbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/luajit/src/xedkbuild.bat -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/premake5.lua -------------------------------------------------------------------------------- /project/gluatest_custom.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project/gluatest_requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/LuaInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/LuaInterface.h -------------------------------------------------------------------------------- /source/_prebuildtools/_compilefiles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/_prebuildtools/_compilefiles.lua -------------------------------------------------------------------------------- /source/_prebuildtools/_dependency_manager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/_prebuildtools/_dependency_manager.lua -------------------------------------------------------------------------------- /source/_prebuildtools/_workflow_summary.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/_prebuildtools/_workflow_summary.lua -------------------------------------------------------------------------------- /source/_prebuildtools/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/_prebuildtools/http.lua -------------------------------------------------------------------------------- /source/_prebuildtools/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/_prebuildtools/json.lua -------------------------------------------------------------------------------- /source/_prebuildtools/luajit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/_prebuildtools/luajit.exe -------------------------------------------------------------------------------- /source/_prebuildtools/luajit_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/_prebuildtools/luajit_32 -------------------------------------------------------------------------------- /source/_prebuildtools/luajit_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/_prebuildtools/luajit_64 -------------------------------------------------------------------------------- /source/_prebuildtools/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/_prebuildtools/utils.lua -------------------------------------------------------------------------------- /source/_versioninfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/_versioninfo.cpp -------------------------------------------------------------------------------- /source/ankerl/unordered_dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ankerl/unordered_dense.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Base.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Bootil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Bootil.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Console/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Console/Console.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Data/Json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Data/Json.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Data/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Data/Tree.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Debug/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Debug/Debug.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/File/Changes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/File/Changes.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/File/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/File/File.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/File/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/File/System.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Image/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Image/Image.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Image/JPEG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Image/JPEG.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Image/PNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Image/PNG.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Network/HTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Network/HTTP.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Network/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Network/Network.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Network/Router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Network/Router.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Network/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Network/Socket.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Threads/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Threads/Mutex.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Threads/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Threads/Thread.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Threads/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Threads/Utility.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Types/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Types/Buffer.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Types/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Types/Math.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Types/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Types/String.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Utility/Hasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Utility/Hasher.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Utility/PackFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Utility/PackFile.h -------------------------------------------------------------------------------- /source/bootil/include/Bootil/Utility/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/include/Bootil/Utility/Time.h -------------------------------------------------------------------------------- /source/bootil/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/premake5.lua -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/fastlz/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/fastlz/README.TXT -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/fastlz/fastlz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/fastlz/fastlz.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/fastlz/fastlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/fastlz/fastlz.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/globber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/globber.cpp -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/Alloc.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/Alloc.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/LzFind.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/LzFind.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/LzHash.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/LzmaDec.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/LzmaDec.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/LzmaEnc.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/LzmaEnc.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/LzmaLib.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/LzmaLib.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/Types.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/lzma/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/lzma/lzma.txt -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/rapidjson/document.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/rapidjson/error/en.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/rapidjson/fwd.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/rapidjson/pointer.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/rapidjson/reader.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/rapidjson/schema.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/rapidjson/stream.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/rapidjson/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/rapidjson/uri.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/rapidjson/writer.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/smhasher/Bitvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/smhasher/Bitvec.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/smhasher/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/smhasher/Platform.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/smhasher/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/smhasher/Types.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/smhasher/crc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/smhasher/crc.cpp -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/smhasher/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/smhasher/pstdint.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/xzip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/xzip/readme.txt -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/xzip/unzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/xzip/unzip.cc -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/xzip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/xzip/unzip.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/xzip/zip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/xzip/zip.cc -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/xzip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/xzip/zip.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/adler32.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/compress.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/crc32.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/crc32.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/deflate.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/deflate.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/gzclose.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/gzguts.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/gzlib.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/gzread.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/gzwrite.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/infback.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/inffast.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/inffast.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/inffixed.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/inflate.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/inflate.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/inftrees.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/inftrees.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/trees.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/trees.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/uncompr.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/zconf.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/zlib.h -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/zutil.c -------------------------------------------------------------------------------- /source/bootil/src/3rdParty/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/3rdParty/zlib/zutil.h -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Base.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Console/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Console/Console.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Data/Json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Data/Json.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Data/Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Data/Tree.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Debug/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Debug/Debug.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/File/Changes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/File/Changes.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/File/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/File/File.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/File/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/File/System.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Image/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Image/Image.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Image/JPEG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Image/JPEG.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Network/HTTP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Network/HTTP.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Network/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Network/Network.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Network/Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Network/Socket.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Threads/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Threads/Mutex.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Threads/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Threads/Thread.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Threads/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Threads/Utility.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Types/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Types/Buffer.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Types/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Types/Math.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Types/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Types/String.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Types/String_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Types/String_File.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Types/String_Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Types/String_Test.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Types/String_To.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Types/String_To.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Types/String_URL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Types/String_URL.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Types/String_Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Types/String_Util.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Utility/Hasher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Utility/Hasher.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Utility/PackFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Utility/PackFile.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Utility/Processes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Utility/Processes.cpp -------------------------------------------------------------------------------- /source/bootil/src/Bootil/Utility/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/bootil/src/Bootil/Utility/Time.cpp -------------------------------------------------------------------------------- /source/configsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/configsystem.cpp -------------------------------------------------------------------------------- /source/configsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/configsystem.h -------------------------------------------------------------------------------- /source/detouring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/detouring/README.md -------------------------------------------------------------------------------- /source/detouring/customclassproxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/detouring/customclassproxy.hpp -------------------------------------------------------------------------------- /source/detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/detours.cpp -------------------------------------------------------------------------------- /source/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/detours.h -------------------------------------------------------------------------------- /source/dllsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/dllsystem.cpp -------------------------------------------------------------------------------- /source/holylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/holylib.cpp -------------------------------------------------------------------------------- /source/holyutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/holyutil.cpp -------------------------------------------------------------------------------- /source/httplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/httplib.h -------------------------------------------------------------------------------- /source/ivp/havana/havana_constraints.vpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havana_constraints.vpc -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/array/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/array/array.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/array/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/array/array.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/array/array.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/array/array.inl -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/base.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/base_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/base_types.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/base_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/base_types.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/console.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/console.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/display.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/hash/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/hash/hash.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/hash/hash.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/hash/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/hash/hash.inl -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/hk_base.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/hk_base.dsp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/hk_base.vpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/hk_base.vpc -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/memory/memory.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/premake5.lua -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/stdafx.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/string/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/string/string.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/util.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_base/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_base/wscript -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/base_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/base_math.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/dense_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/dense_vector.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/densematrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/densematrix.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/densematrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/densematrix.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/hk_math.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/hk_math.dsp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/hk_math.vpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/hk_math.vpc -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/interval.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/math.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/math.inl -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/matrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/matrix3.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/matrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/matrix3.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/matrix3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/matrix3.inl -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/odesolve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/odesolve.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/odesolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/odesolve.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/plane.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/plane.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/plane.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/plane.inl -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/premake5.lua -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/qtransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/qtransform.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/ray.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/ray.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/ray.inl -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/rotation.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/rotation.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/rotation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/rotation.inl -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/stdafx.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/transform.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/types.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/vecmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/vecmath.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/vecmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/vecmath.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/vector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/vector4.cpp -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/vector4.h -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/vector4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/vector4.inl -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_math/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_math/wscript -------------------------------------------------------------------------------- /source/ivp/havana/havok/hk_physics/physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/havok/hk_physics/physics.h -------------------------------------------------------------------------------- /source/ivp/havana/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/havana/premake5.lua -------------------------------------------------------------------------------- /source/ivp/ivp_collision/ivp_3d_solver.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_collision/ivp_3d_solver.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_collision/ivp_3d_solver.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_collision/ivp_3d_solver.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_collision/ivp_collision.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_collision/ivp_collision.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_collision/ivp_mindist.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_collision/ivp_mindist.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_collision/ivp_mindist.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_collision/ivp_mindist.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_collision/ivp_oo_watcher.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_collision/ivp_oo_watcher.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_collision/ivp_ray_solver.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_collision/ivp_ray_solver.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_collision/ivp_ray_solver.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_collision/ivp_ray_solver.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_compact_builder/geompack.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_compact_builder/geompack.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_compact_builder/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_compact_builder/premake5.lua -------------------------------------------------------------------------------- /source/ivp/ivp_compact_builder/qhull.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_compact_builder/qhull.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_compact_builder/qhull.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_compact_builder/qhull.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_compact_builder/qhull_a.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_compact_builder/qhull_a.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_compact_builder/qhull_io.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_compact_builder/qhull_io.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_compact_builder/qhull_io.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_compact_builder/qhull_io.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_compact_builder/qhull_mem.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_compact_builder/qhull_mem.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_compact_builder/qhull_mem.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_compact_builder/qhull_mem.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_compact_builder/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_compact_builder/stdafx.h -------------------------------------------------------------------------------- /source/ivp/ivp_controller/ivp_actuator.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_controller/ivp_actuator.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_controller/ivp_actuator.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_controller/ivp_actuator.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_controller/ivp_car_system.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_controller/ivp_car_system.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_controller/ivp_car_system.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_controller/ivp_car_system.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_controller/ivp_constraint.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_controller/ivp_constraint.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_controller/ivp_constraint.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_controller/ivp_constraint.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_controller/ivp_controller.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_controller/ivp_controller.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_controller/ivp_forcefield.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_controller/ivp_forcefield.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_controller/ivp_forcefield.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_controller/ivp_forcefield.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_docs/ivp_manual.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_docs/ivp_manual.rtf -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_ball.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_ball.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_core.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_core.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_environment.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_environment.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_friction.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_friction.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_friction.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_friction.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_friction_gaps.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_friction_gaps.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_great_matrix.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_great_matrix.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_hull_manager.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_hull_manager.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_i_object_vhash.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_i_object_vhash.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_i_object_vhash.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_i_object_vhash.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_impact.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_impact.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_impact.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_impact.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_merge_core.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_merge_core.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_merge_core.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_merge_core.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_object.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_object.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_object_attach.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_object_attach.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_physic.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_physic.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_physic_private.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_physic_private.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_physic_private.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_physic_private.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_polygon.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_polygon.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_sim_unit.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_sim_unit.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_sim_unit.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_sim_unit.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_intern/ivp_time.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_intern/ivp_time.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ive_graphics.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ive_graphics.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_authenticity.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_authenticity.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_ball.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_ball.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_cache_object.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_cache_object.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_cache_object.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_cache_object.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_core.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_core.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_core_macros.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_core_macros.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_debug.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_debug.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_debug_manager.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_debug_manager.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_environment.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_environment.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_great_matrix.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_great_matrix.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_holylib.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_holylib.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_holylib.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_holylib.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_hull_manager.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_hull_manager.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_listener_hull.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_listener_hull.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_listener_psi.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_listener_psi.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_material.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_material.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_material.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_material.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_object.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_object.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_object_attach.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_object_attach.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_phantom.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_phantom.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_physics.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_physics.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_physics.vpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_physics.vpc -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_polygon.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_polygon.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_radar.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_radar.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_radar_appl.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_radar_appl.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_real_object.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_real_object.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_templates.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_templates.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_templates.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_templates.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_time.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_time.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/ivp_time_event.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/ivp_time_event.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_physics/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_physics/premake5.lua -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_active_value.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_active_value.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_active_value.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_active_value.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_bigvector.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_bigvector.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_bigvector.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_bigvector.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_diff_hash.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_diff_hash.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_float.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_float.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_fvector.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_fvector.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_geometry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_geometry.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_geometry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_geometry.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_hash.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_hash.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_hash.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_hash.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_linear.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_linear.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_linear.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_linear.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_linear_double.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_linear_double.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_linear_macros.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_linear_macros.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_linear_piii.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_linear_piii.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_linear_ps2.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_linear_ps2.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_list.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_list.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_mapping.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_mapping.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_mapping.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_mapping.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_matrix_macros.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_matrix_macros.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_memory.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_memory.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_memory.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_memory.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_min_hash.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_min_hash.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_min_hash.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_min_hash.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_min_list.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_min_list.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_min_list.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_min_list.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_os_dep.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_os_dep.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_ps2.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_ps2.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_quat.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_quat.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_quat.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_quat.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_set.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_set.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_string.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_string.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_string.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_string.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_string_hash.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_string_hash.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_types.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_types.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_types.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_types.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_vector.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_vector.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_vector.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_vector.hxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_vhash.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_vhash.cxx -------------------------------------------------------------------------------- /source/ivp/ivp_utility/ivu_vhash.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/ivp_utility/ivu_vhash.hxx -------------------------------------------------------------------------------- /source/ivp/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/premake5.lua -------------------------------------------------------------------------------- /source/ivp/vphysics/cbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/cbase.h -------------------------------------------------------------------------------- /source/ivp/vphysics/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/convert.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/convert.h -------------------------------------------------------------------------------- /source/ivp/vphysics/dll_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/dll_main.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/ledgewriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/ledgewriter.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/ledgewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/ledgewriter.h -------------------------------------------------------------------------------- /source/ivp/vphysics/linear_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/linear_solver.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/linear_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/linear_solver.h -------------------------------------------------------------------------------- /source/ivp/vphysics/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/main.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_airboat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_airboat.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_airboat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_airboat.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_collide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_collide.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_constraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_constraint.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_constraint.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_environment.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_environment.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_fluid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_fluid.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_fluid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_fluid.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_friction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_friction.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_friction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_friction.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_holylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_holylib.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_holylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_holylib.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_material.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_material.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_material.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_object.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_object.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_shadow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_shadow.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_shadow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_shadow.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_spring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_spring.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_spring.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_trace.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_vehicle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_vehicle.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_vehicle.h -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_virtualmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_virtualmesh.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/physics_virtualmesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/physics_virtualmesh.h -------------------------------------------------------------------------------- /source/ivp/vphysics/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/premake5.lua -------------------------------------------------------------------------------- /source/ivp/vphysics/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/resource.h -------------------------------------------------------------------------------- /source/ivp/vphysics/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/stdafx.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/trace.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/vcollide_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/vcollide_parse.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/vcollide_parse_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/vcollide_parse_private.h -------------------------------------------------------------------------------- /source/ivp/vphysics/vphysics.vpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/vphysics.vpc -------------------------------------------------------------------------------- /source/ivp/vphysics/vphysics_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/vphysics_internal.h -------------------------------------------------------------------------------- /source/ivp/vphysics/vphysics_saverestore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/vphysics_saverestore.cpp -------------------------------------------------------------------------------- /source/ivp/vphysics/vphysics_saverestore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/ivp/vphysics/vphysics_saverestore.h -------------------------------------------------------------------------------- /source/lua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua.cpp -------------------------------------------------------------------------------- /source/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua.h -------------------------------------------------------------------------------- /source/lua/CLuaGameCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua/CLuaGameCallback.cpp -------------------------------------------------------------------------------- /source/lua/CLuaInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua/CLuaInterface.cpp -------------------------------------------------------------------------------- /source/lua/CLuaInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua/CLuaInterface.h -------------------------------------------------------------------------------- /source/lua/ILuaInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua/ILuaInterface.h -------------------------------------------------------------------------------- /source/lua/PooledStrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua/PooledStrings.h -------------------------------------------------------------------------------- /source/lua/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | *.h -------------------------------------------------------------------------------- /source/lua/scripts/AngleFFI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua/scripts/AngleFFI.lua -------------------------------------------------------------------------------- /source/lua/scripts/HolyLibUserDataFFI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua/scripts/HolyLibUserDataFFI.lua -------------------------------------------------------------------------------- /source/lua/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua/scripts/README.md -------------------------------------------------------------------------------- /source/lua/scripts/VectorFFI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua/scripts/VectorFFI.lua -------------------------------------------------------------------------------- /source/lua/scripts/VoiceDataFFI.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lua/scripts/VoiceDataFFI.lua -------------------------------------------------------------------------------- /source/lz4/.gitignore: -------------------------------------------------------------------------------- 1 | # make install artefact 2 | liblz4.pc 3 | -------------------------------------------------------------------------------- /source/lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/LICENSE -------------------------------------------------------------------------------- /source/lz4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/Makefile -------------------------------------------------------------------------------- /source/lz4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/README.md -------------------------------------------------------------------------------- /source/lz4/liblz4-dll.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/liblz4-dll.rc.in -------------------------------------------------------------------------------- /source/lz4/liblz4.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/liblz4.pc.in -------------------------------------------------------------------------------- /source/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/lz4.c -------------------------------------------------------------------------------- /source/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/lz4.h -------------------------------------------------------------------------------- /source/lz4/lz4_compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/lz4_compression.cpp -------------------------------------------------------------------------------- /source/lz4/lz4_compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/lz4_compression.h -------------------------------------------------------------------------------- /source/lz4/lz4file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/lz4file.c -------------------------------------------------------------------------------- /source/lz4/lz4file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/lz4file.h -------------------------------------------------------------------------------- /source/lz4/lz4frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/lz4frame.c -------------------------------------------------------------------------------- /source/lz4/lz4frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/lz4frame.h -------------------------------------------------------------------------------- /source/lz4/lz4frame_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/lz4frame_static.h -------------------------------------------------------------------------------- /source/lz4/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/lz4hc.c -------------------------------------------------------------------------------- /source/lz4/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/lz4hc.h -------------------------------------------------------------------------------- /source/lz4/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/xxhash.c -------------------------------------------------------------------------------- /source/lz4/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/lz4/xxhash.h -------------------------------------------------------------------------------- /source/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/module.cpp -------------------------------------------------------------------------------- /source/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/module.h -------------------------------------------------------------------------------- /source/modules/autorefresh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/autorefresh.cpp -------------------------------------------------------------------------------- /source/modules/bass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/bass.cpp -------------------------------------------------------------------------------- /source/modules/bitbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/bitbuf.cpp -------------------------------------------------------------------------------- /source/modules/concommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/concommand.cpp -------------------------------------------------------------------------------- /source/modules/cvars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/cvars.cpp -------------------------------------------------------------------------------- /source/modules/entitylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/entitylist.cpp -------------------------------------------------------------------------------- /source/modules/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/filesystem.cpp -------------------------------------------------------------------------------- /source/modules/gameevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/gameevent.cpp -------------------------------------------------------------------------------- /source/modules/gameserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/gameserver.cpp -------------------------------------------------------------------------------- /source/modules/holylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/holylib.cpp -------------------------------------------------------------------------------- /source/modules/holylua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/holylua.cpp -------------------------------------------------------------------------------- /source/modules/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/httpserver.cpp -------------------------------------------------------------------------------- /source/modules/luajit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/luajit.cpp -------------------------------------------------------------------------------- /source/modules/luathreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/luathreads.cpp -------------------------------------------------------------------------------- /source/modules/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/net.cpp -------------------------------------------------------------------------------- /source/modules/networking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/networking.cpp -------------------------------------------------------------------------------- /source/modules/networkingreplacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/networkingreplacement.cpp -------------------------------------------------------------------------------- /source/modules/networkthreading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/networkthreading.cpp -------------------------------------------------------------------------------- /source/modules/nw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/nw.cpp -------------------------------------------------------------------------------- /source/modules/pas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/pas.cpp -------------------------------------------------------------------------------- /source/modules/physenv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/physenv.cpp -------------------------------------------------------------------------------- /source/modules/precachefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/precachefix.cpp -------------------------------------------------------------------------------- /source/modules/pvs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/pvs.cpp -------------------------------------------------------------------------------- /source/modules/serverplugins.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/serverplugins.cpp -------------------------------------------------------------------------------- /source/modules/soundscape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/soundscape.cpp -------------------------------------------------------------------------------- /source/modules/sourcetv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/sourcetv.cpp -------------------------------------------------------------------------------- /source/modules/steamworks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/steamworks.cpp -------------------------------------------------------------------------------- /source/modules/stringtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/stringtable.cpp -------------------------------------------------------------------------------- /source/modules/surffix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/surffix.cpp -------------------------------------------------------------------------------- /source/modules/systimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/systimer.cpp -------------------------------------------------------------------------------- /source/modules/template.c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/template.c++ -------------------------------------------------------------------------------- /source/modules/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/util.cpp -------------------------------------------------------------------------------- /source/modules/voicechat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/voicechat.cpp -------------------------------------------------------------------------------- /source/modules/vprof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/modules/vprof.cpp -------------------------------------------------------------------------------- /source/opus/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/opus/LICENSE.txt -------------------------------------------------------------------------------- /source/opus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/opus/README.md -------------------------------------------------------------------------------- /source/opus/include/opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/opus/include/opus.h -------------------------------------------------------------------------------- /source/opus/include/opus_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/opus/include/opus_custom.h -------------------------------------------------------------------------------- /source/opus/include/opus_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/opus/include/opus_defines.h -------------------------------------------------------------------------------- /source/opus/include/opus_multistream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/opus/include/opus_multistream.h -------------------------------------------------------------------------------- /source/opus/include/opus_projection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/opus/include/opus_projection.h -------------------------------------------------------------------------------- /source/opus/include/opus_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/opus/include/opus_types.h -------------------------------------------------------------------------------- /source/opus/ivoicecodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/opus/ivoicecodec.h -------------------------------------------------------------------------------- /source/opus/opus_framedecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/opus/opus_framedecoder.h -------------------------------------------------------------------------------- /source/opus/steam_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/opus/steam_voice.h -------------------------------------------------------------------------------- /source/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/plugin.cpp -------------------------------------------------------------------------------- /source/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/plugin.h -------------------------------------------------------------------------------- /source/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/public/README.md -------------------------------------------------------------------------------- /source/public/iconfigsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/public/iconfigsystem.h -------------------------------------------------------------------------------- /source/public/iholylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/public/iholylib.h -------------------------------------------------------------------------------- /source/public/iholyutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/public/iholyutil.h -------------------------------------------------------------------------------- /source/public/imodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/public/imodule.h -------------------------------------------------------------------------------- /source/rawlua.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/rawlua.cpp -------------------------------------------------------------------------------- /source/sourcesdk/GameEventManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/GameEventManager.h -------------------------------------------------------------------------------- /source/sourcesdk/IGmod_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/IGmod_Audio.h -------------------------------------------------------------------------------- /source/sourcesdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/README.md -------------------------------------------------------------------------------- /source/sourcesdk/baseclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/baseclient.h -------------------------------------------------------------------------------- /source/sourcesdk/baseclientstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/baseclientstate.h -------------------------------------------------------------------------------- /source/sourcesdk/baseentity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/baseentity.cpp -------------------------------------------------------------------------------- /source/sourcesdk/baseserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/baseserver.h -------------------------------------------------------------------------------- /source/sourcesdk/bass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/bass.h -------------------------------------------------------------------------------- /source/sourcesdk/bassenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/bassenc.h -------------------------------------------------------------------------------- /source/sourcesdk/bassenc_flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/bassenc_flac.h -------------------------------------------------------------------------------- /source/sourcesdk/bassenc_mp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/bassenc_mp3.h -------------------------------------------------------------------------------- /source/sourcesdk/bassenc_ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/bassenc_ogg.h -------------------------------------------------------------------------------- /source/sourcesdk/bassenc_opus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/bassenc_opus.h -------------------------------------------------------------------------------- /source/sourcesdk/bassmix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/bassmix.h -------------------------------------------------------------------------------- /source/sourcesdk/c_baseentity.h: -------------------------------------------------------------------------------- 1 | // Nothing. -------------------------------------------------------------------------------- /source/sourcesdk/cgmod_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/cgmod_audio.cpp -------------------------------------------------------------------------------- /source/sourcesdk/cgmod_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/cgmod_audio.h -------------------------------------------------------------------------------- /source/sourcesdk/clientframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/clientframe.h -------------------------------------------------------------------------------- /source/sourcesdk/clockdriftmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/clockdriftmgr.h -------------------------------------------------------------------------------- /source/sourcesdk/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/cmd.h -------------------------------------------------------------------------------- /source/sourcesdk/cmodel_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/cmodel_private.h -------------------------------------------------------------------------------- /source/sourcesdk/cnetchan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/cnetchan.cpp -------------------------------------------------------------------------------- /source/sourcesdk/cnetchan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/cnetchan.h -------------------------------------------------------------------------------- /source/sourcesdk/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/common.h -------------------------------------------------------------------------------- /source/sourcesdk/custom_net_chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/custom_net_chan.h -------------------------------------------------------------------------------- /source/sourcesdk/demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/demo.h -------------------------------------------------------------------------------- /source/sourcesdk/demofile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/demofile.h -------------------------------------------------------------------------------- /source/sourcesdk/dt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/dt.h -------------------------------------------------------------------------------- /source/sourcesdk/dt_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/dt_encode.h -------------------------------------------------------------------------------- /source/sourcesdk/dt_recv_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/dt_recv_decoder.h -------------------------------------------------------------------------------- /source/sourcesdk/dt_recv_eng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/dt_recv_eng.h -------------------------------------------------------------------------------- /source/sourcesdk/dt_send_eng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/dt_send_eng.h -------------------------------------------------------------------------------- /source/sourcesdk/dt_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/dt_stack.h -------------------------------------------------------------------------------- /source/sourcesdk/enginesingleuserfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/enginesingleuserfilter.h -------------------------------------------------------------------------------- /source/sourcesdk/event_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/event_system.h -------------------------------------------------------------------------------- /source/sourcesdk/filesystem_things.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/filesystem_things.h -------------------------------------------------------------------------------- /source/sourcesdk/framesnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/framesnapshot.h -------------------------------------------------------------------------------- /source/sourcesdk/gameeventmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/gameeventmanager.cpp -------------------------------------------------------------------------------- /source/sourcesdk/gameinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/gameinterface.cpp -------------------------------------------------------------------------------- /source/sourcesdk/gamemovement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/gamemovement.h -------------------------------------------------------------------------------- /source/sourcesdk/gl_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/gl_model.h -------------------------------------------------------------------------------- /source/sourcesdk/hltvclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/hltvclient.h -------------------------------------------------------------------------------- /source/sourcesdk/hltvclientstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/hltvclientstate.h -------------------------------------------------------------------------------- /source/sourcesdk/hltvdemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/hltvdemo.h -------------------------------------------------------------------------------- /source/sourcesdk/hltvdirector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/hltvdirector.cpp -------------------------------------------------------------------------------- /source/sourcesdk/hltvdirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/hltvdirector.h -------------------------------------------------------------------------------- /source/sourcesdk/hltvserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/hltvserver.h -------------------------------------------------------------------------------- /source/sourcesdk/host_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/host_state.h -------------------------------------------------------------------------------- /source/sourcesdk/iluashared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/iluashared.h -------------------------------------------------------------------------------- /source/sourcesdk/iserverplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/iserverplugin.h -------------------------------------------------------------------------------- /source/sourcesdk/ivp_old/cphysicsobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/ivp_old/cphysicsobject.h -------------------------------------------------------------------------------- /source/sourcesdk/ivp_old/ivp_classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/ivp_old/ivp_classes.h -------------------------------------------------------------------------------- /source/sourcesdk/ivp_old/ivp_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/ivp_old/ivp_time.h -------------------------------------------------------------------------------- /source/sourcesdk/ivp_old/ivp_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/ivp_old/ivp_types.h -------------------------------------------------------------------------------- /source/sourcesdk/linux_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/linux_support.h -------------------------------------------------------------------------------- /source/sourcesdk/modelloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/modelloader.h -------------------------------------------------------------------------------- /source/sourcesdk/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/net.h -------------------------------------------------------------------------------- /source/sourcesdk/net_chan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/net_chan.h -------------------------------------------------------------------------------- /source/sourcesdk/netadr_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/netadr_new.cpp -------------------------------------------------------------------------------- /source/sourcesdk/netadr_new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/netadr_new.h -------------------------------------------------------------------------------- /source/sourcesdk/netmessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/netmessages.cpp -------------------------------------------------------------------------------- /source/sourcesdk/netmessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/netmessages.h -------------------------------------------------------------------------------- /source/sourcesdk/networkstringtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/networkstringtable.h -------------------------------------------------------------------------------- /source/sourcesdk/networkstringtableitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/networkstringtableitem.h -------------------------------------------------------------------------------- /source/sourcesdk/otherstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/otherstuff.cpp -------------------------------------------------------------------------------- /source/sourcesdk/packed_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/packed_entity.h -------------------------------------------------------------------------------- /source/sourcesdk/precache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/precache.cpp -------------------------------------------------------------------------------- /source/sourcesdk/precache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/precache.h -------------------------------------------------------------------------------- /source/sourcesdk/proto_oob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/proto_oob.h -------------------------------------------------------------------------------- /source/sourcesdk/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/protocol.h -------------------------------------------------------------------------------- /source/sourcesdk/quakedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/quakedef.h -------------------------------------------------------------------------------- /source/sourcesdk/recipientfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/recipientfilter.cpp -------------------------------------------------------------------------------- /source/sourcesdk/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/render.h -------------------------------------------------------------------------------- /source/sourcesdk/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/server.h -------------------------------------------------------------------------------- /source/sourcesdk/steamcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/steamcommon.h -------------------------------------------------------------------------------- /source/sourcesdk/stringregistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/stringregistry.cpp -------------------------------------------------------------------------------- /source/sourcesdk/sv_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/sv_client.h -------------------------------------------------------------------------------- /source/sourcesdk/sv_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/sv_plugin.h -------------------------------------------------------------------------------- /source/sourcesdk/sv_steamauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/sv_steamauth.h -------------------------------------------------------------------------------- /source/sourcesdk/sysexternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/sysexternal.h -------------------------------------------------------------------------------- /source/sourcesdk/tier2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/tier2.cpp -------------------------------------------------------------------------------- /source/sourcesdk/tier2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/tier2.h -------------------------------------------------------------------------------- /source/sourcesdk/usermessages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/sourcesdk/usermessages.cpp -------------------------------------------------------------------------------- /source/symbols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/symbols.cpp -------------------------------------------------------------------------------- /source/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/symbols.h -------------------------------------------------------------------------------- /source/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/util.cpp -------------------------------------------------------------------------------- /source/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/util.h -------------------------------------------------------------------------------- /source/versioninfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaphaelIT7/gmod-holylib/HEAD/source/versioninfo.h --------------------------------------------------------------------------------