├── code ├── base64.c ├── base64.h ├── base64_test.c ├── crash.cpp ├── crash.h ├── csteam.cpp ├── csteam.h ├── dnAPI.cpp ├── dnAPI.h ├── dnAPI_globals.c ├── dnAchievement.cpp ├── dnAchievement.h ├── dnMouseInput.c ├── dnMouseInput.h ├── dnMulti.cpp ├── dnMulti.h ├── dnSnapshot.cpp ├── dnSnapshot.h ├── dn_system.h ├── glguard.cpp ├── glguard.h ├── gui.cpp ├── gui.h ├── gui_private.cpp ├── gui_private.h ├── helpers.cpp ├── helpers.h ├── lintools.c ├── log.cpp ├── log.h ├── mactools.h ├── mactools.m ├── miniz.h ├── mode_detect_osx.m ├── mode_detect_win32.c ├── playvpx │ ├── playvpx.cpp │ └── playvpx.h ├── rocket │ ├── FrameAnimationDecorator.cpp │ ├── FrameAnimationDecorator.h │ ├── FrameAnimationDecoratorInstancer.h │ ├── FrameAnimationDectoratorInstancer.cpp │ ├── PluginUtils.cpp │ ├── PluginUtils.h │ ├── PythonInterface.cpp │ ├── PythonInterface.h │ ├── RocketAnimationPlugin.cpp │ ├── RocketAnimationPlugin.h │ ├── RocketMenuPlugin.cpp │ ├── RocketMenuPlugin.h │ ├── ShellFileInterface.cpp │ ├── ShellFileInterface.h │ ├── ShellOpenGL.h │ ├── ShellRenderInterfaceOpenGL.cpp │ ├── ShellRenderInterfaceOpenGL.h │ ├── ShellSystemInterface.cpp │ └── ShellSystemInterface.h ├── sdl2_compat.cpp ├── wintools.c └── wintools.h ├── duke3d.sln ├── duke3d ├── duke3d-Info.plist ├── duke3d.vcproj ├── duke3d.vcxproj └── duke3d.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── duke3d.xccheckout │ └── xcuserdata │ │ └── termit.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ └── termit.xcuserdatad │ ├── xcdebugger │ ├── Breakpoints.xcbkptlist │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── duke3d.xcscheme │ ├── duke3d_w_SDL.xcscheme │ └── xcschememanagement.plist ├── gameroot ├── data │ ├── conf.rcss │ ├── confirmation.rcss │ ├── credits.rml │ ├── episodes.rml │ ├── game.rml │ ├── ingamemenu.rml │ ├── keyprompt.rml │ ├── keys.rml │ ├── loadgame.rml │ ├── mainmenu.rml │ ├── mainmenu_1.rml │ ├── mainmenu_2.rml │ ├── mainmenu_3.rml │ ├── menu.rcss │ ├── menubg.rml │ ├── menubg_1.rml │ ├── menubg_2.rml │ ├── menubg_3.rml │ ├── mouse.rml │ ├── options.rml │ ├── pointer.rml │ ├── savegame.rml │ ├── saveload.rcss │ ├── scrollbar.rcss │ ├── skill.rml │ ├── skill_3.rml │ ├── skillep.rcss │ ├── sound.rml │ ├── start.rml │ ├── video.rml │ ├── videoconfirm.rml │ └── yesno.rml ├── duke3d-megaton.def └── duke3d-megaton_3.def ├── jfaudiolib ├── OggPlayer.cpp ├── OggPlayer.h ├── _midi.h ├── _multivc.h ├── asssys.c ├── asssys.h ├── cd.c ├── cd.h ├── driver_coreaudio.c ├── driver_coreaudio.h ├── driver_directsound.c ├── driver_directsound.h ├── driver_nosound.c ├── driver_nosound.h ├── driver_sdl.c ├── driver_sdl.h ├── driver_winmm.c ├── driver_winmm.h ├── drivers.c ├── drivers.h ├── dsound_oggplayer.cpp ├── dsound_oggplayer.h ├── flac.c ├── formats.c ├── fx_man.c ├── fx_man.h ├── inttypes.h ├── linklist.h ├── ll_man.h ├── midi.c ├── midi.h ├── midifuncs.h ├── mix.c ├── mixst.c ├── mpu401.c ├── mpu401.h ├── multivoc.c ├── multivoc.h ├── music.c ├── music.h ├── pitch.c ├── pitch.h ├── sdlmusic.c ├── sndcards.h ├── standard.h ├── stdint.h └── vorbis.c ├── jfbuild ├── a-c.c ├── a.h ├── baselayer.c ├── baselayer.h ├── build.h ├── cache1d.c ├── cache1d.h ├── common_build.c ├── common_build.h ├── compat.c ├── compat.h ├── crc32.c ├── crc32.h ├── defs.c ├── dxdidf.h ├── editor.h ├── engine.c ├── engine_priv.h ├── glbuild.c ├── glbuild.h ├── glext.h ├── hightile.c ├── hightile_priv.h ├── kplib.c ├── kplib.h ├── lz4.c ├── lz4.h ├── lz4_encoder.h ├── lzf.h ├── lzfP.h ├── lzf_c.c ├── lzf_d.c ├── lzwnew.c ├── lzwnew.h ├── md4.c ├── md4.h ├── mdsprite.c ├── mdsprite_priv.h ├── mmulti.c ├── mmulti.h ├── mmulti_steam.c ├── mmultimsgs.h ├── osd.c ├── osd.h ├── polymost.c ├── polymost_priv.h ├── polymosttex.c ├── polymosttex_priv.h ├── polymosttexcache.c ├── polymosttexcache.h ├── pragmas.c ├── pragmas.h ├── scriptfile.c ├── scriptfile.h ├── sdlayer.c ├── sdlayer.h ├── smalltextfont.c └── textfont.c ├── jfduke3d ├── GameListSource.game.h ├── _functio.h ├── _rts.h ├── actors.c ├── build_icon.c ├── config.c ├── config.h ├── develop.h ├── duke3d.h ├── funct.h ├── function.h ├── game.c ├── gamedef.c ├── gamedefs.h ├── global.c ├── grpscan.c ├── grpscan.h ├── menues.c ├── names.h ├── osdcmds.c ├── osdcmds.h ├── osdfuncs.c ├── osdfuncs.h ├── player.c ├── premap.c ├── rts.c ├── rts.h ├── sector.c ├── soundefs.h ├── sounds.c ├── sounds.h ├── startwin.game.c ├── startwin.game.h ├── testcd.c └── winbits.c ├── jfmact ├── _control.h ├── _scrplib.h ├── animlib.c ├── animlib.h ├── control.c ├── control.h ├── develop.h ├── file_lib.c ├── file_lib.h ├── keyboard.c ├── keyboard.h ├── mathutil.c ├── mathutil.h ├── mouse.c ├── mouse.h ├── scriplib.c ├── scriplib.h ├── types.h ├── util_lib.c └── util_lib.h └── thirdparty ├── dxsdk └── include │ ├── D2D1.h │ ├── D2D1Helper.h │ ├── D2DBaseTypes.h │ ├── D2Derr.h │ ├── D3D10.h │ ├── D3D10_1.h │ ├── D3D10_1shader.h │ ├── D3D10effect.h │ ├── D3D10shader.h │ ├── D3D11.h │ ├── D3D11SDKLayers.h │ ├── D3D11Shader.h │ ├── D3DCSX.h │ ├── D3DX10.h │ ├── D3DX10core.h │ ├── D3DX10math.h │ ├── D3DX10math.inl │ ├── D3DX10mesh.h │ ├── D3DX10tex.h │ ├── D3DX11.h │ ├── D3DX11async.h │ ├── D3DX11core.h │ ├── D3DX11tex.h │ ├── D3DX_DXGIFormatConvert.inl │ ├── D3Dcommon.h │ ├── D3Dcompiler.h │ ├── DWrite.h │ ├── DXGI.h │ ├── DXGIFormat.h │ ├── DXGIType.h │ ├── Dcommon.h │ ├── DxErr.h │ ├── PIXPlugin.h │ ├── X3DAudio.h │ ├── XAPO.h │ ├── XAPOBase.h │ ├── XAPOFX.h │ ├── XAudio2.h │ ├── XAudio2fx.h │ ├── XDSP.h │ ├── XInput.h │ ├── audiodefs.h │ ├── comdecl.h │ ├── d3d10misc.h │ ├── d3d10sdklayers.h │ ├── d3d9.h │ ├── d3d9caps.h │ ├── d3d9types.h │ ├── d3dx10async.h │ ├── d3dx9.h │ ├── d3dx9anim.h │ ├── d3dx9core.h │ ├── d3dx9effect.h │ ├── d3dx9math.h │ ├── d3dx9math.inl │ ├── d3dx9mesh.h │ ├── d3dx9shader.h │ ├── d3dx9shape.h │ ├── d3dx9tex.h │ ├── d3dx9xof.h │ ├── dinput.h │ ├── dinputd.h │ ├── dsconf.h │ ├── dsetup.h │ ├── dsound.h │ ├── dxdiag.h │ ├── dxfile.h │ ├── dxsdkver.h │ ├── gameux.h │ ├── rmxfguid.h │ ├── rmxftmpl.h │ ├── rpcsal.h │ ├── xact3.h │ ├── xact3d3.h │ ├── xact3wb.h │ ├── xma2defs.h │ ├── xnamath.h │ ├── xnamathconvert.inl │ ├── xnamathmatrix.inl │ ├── xnamathmisc.inl │ └── xnamathvector.inl ├── frameworks ├── ogg.framework │ ├── Headers │ ├── Resources │ ├── Versions │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── ogg.h │ │ │ │ └── os_types.h │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── Info.plist │ │ │ └── ogg │ │ └── Current │ └── ogg └── vorbis.framework │ ├── Headers │ ├── Resources │ ├── Versions │ ├── A │ │ ├── Headers │ │ │ ├── codec.h │ │ │ ├── vorbisenc.h │ │ │ └── vorbisfile.h │ │ ├── Resources │ │ │ ├── English.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── Info.plist │ │ └── vorbis │ └── Current │ └── vorbis └── include ├── CrashRpt.h ├── CrashRptProbe.h ├── Rocket ├── Controls.h ├── Controls │ ├── Clipboard.h │ ├── Controls.h │ ├── DataFormatter.h │ ├── DataQuery.h │ ├── DataSource.h │ ├── DataSourceListener.h │ ├── ElementDataGrid.h │ ├── ElementDataGridCell.h │ ├── ElementDataGridExpandButton.h │ ├── ElementDataGridRow.h │ ├── ElementForm.h │ ├── ElementFormControl.h │ ├── ElementFormControlDataSelect.h │ ├── ElementFormControlInput.h │ ├── ElementFormControlSelect.h │ ├── ElementFormControlTextArea.h │ ├── ElementTabSet.h │ ├── Header.h │ └── SelectOption.h ├── Core.h ├── Core │ ├── BaseXMLParser.h │ ├── Box.h │ ├── Colour.h │ ├── Colour.inl │ ├── Context.h │ ├── ContextInstancer.h │ ├── ConvolutionFilter.h │ ├── Core.h │ ├── Debug.h │ ├── Decorator.h │ ├── DecoratorInstancer.h │ ├── Dictionary.h │ ├── Dictionary.inl │ ├── Element.h │ ├── Element.inl │ ├── ElementDocument.h │ ├── ElementInstancer.h │ ├── ElementInstancerGeneric.h │ ├── ElementInstancerGeneric.inl │ ├── ElementReference.h │ ├── ElementScroll.h │ ├── ElementText.h │ ├── ElementUtilities.h │ ├── Event.h │ ├── EventInstancer.h │ ├── EventListener.h │ ├── EventListenerInstancer.h │ ├── Factory.h │ ├── FileInterface.h │ ├── Font.h │ ├── FontDatabase.h │ ├── FontEffect.h │ ├── FontEffectInstancer.h │ ├── FontGlyph.h │ ├── Geometry.h │ ├── GeometryUtilities.h │ ├── Header.h │ ├── Input.h │ ├── Log.h │ ├── Math.h │ ├── MathTypes.h │ ├── Platform.h │ ├── Plugin.h │ ├── Pool.h │ ├── Pool.inl │ ├── Property.h │ ├── PropertyDefinition.h │ ├── PropertyDictionary.h │ ├── PropertyParser.h │ ├── PropertySpecification.h │ ├── Python │ │ ├── ConverterScriptObject.h │ │ ├── ElementInstancer.h │ │ ├── ElementWrapper.h │ │ ├── Header.h │ │ ├── NameIndexInterface.h │ │ ├── PickleTypeConverter.h │ │ ├── Python.h │ │ ├── Utilities.h │ │ ├── VectorInterface.h │ │ ├── Wrapper.h │ │ └── WrapperIter.h │ ├── ReferenceCountable.h │ ├── RenderInterface.h │ ├── ScriptInterface.h │ ├── Stream.h │ ├── StreamMemory.h │ ├── String.h │ ├── StringBase.h │ ├── StringBase.inl │ ├── StringStorage.h │ ├── StringUtilities.h │ ├── StyleSheet.h │ ├── StyleSheetKeywords.h │ ├── StyleSheetSpecification.h │ ├── SystemInterface.h │ ├── Texture.h │ ├── TypeConverter.h │ ├── TypeConverter.inl │ ├── Types.h │ ├── URL.h │ ├── Variant.h │ ├── Variant.inl │ ├── Vector2.h │ ├── Vector2.inl │ ├── Vertex.h │ ├── WString.h │ ├── XMLNodeHandler.h │ └── XMLParser.h ├── Debugger.h └── Debugger │ ├── Debugger.h │ └── Header.h ├── SDL.h ├── SDL_active.h ├── SDL_assert.h ├── SDL_atomic.h ├── SDL_audio.h ├── SDL_bits.h ├── SDL_blendmode.h ├── SDL_byteorder.h ├── SDL_cdrom.h ├── SDL_clipboard.h ├── SDL_config.h ├── SDL_config.h.default ├── SDL_config.h.generated ├── SDL_config.h.in ├── SDL_config_android.h ├── SDL_config_dreamcast.h ├── SDL_config_iphoneos.h ├── SDL_config_macos.h ├── SDL_config_macosx.h ├── SDL_config_minimal.h ├── SDL_config_nds.h ├── SDL_config_os2.h ├── SDL_config_pandora.h ├── SDL_config_psp.h ├── SDL_config_symbian.h ├── SDL_config_win32.h ├── SDL_config_windows.h ├── SDL_config_wiz.h ├── SDL_copying.h ├── SDL_cpuinfo.h ├── SDL_endian.h ├── SDL_error.h ├── SDL_events.h ├── SDL_filesystem.h ├── SDL_gamecontroller.h ├── SDL_gesture.h ├── SDL_getenv.h ├── SDL_haptic.h ├── SDL_hints.h ├── SDL_joystick.h ├── SDL_keyboard.h ├── SDL_keycode.h ├── SDL_keysym.h ├── SDL_loadso.h ├── SDL_log.h ├── SDL_main.h ├── SDL_messagebox.h ├── SDL_mouse.h ├── SDL_mutex.h ├── SDL_name.h ├── SDL_opengl.h ├── SDL_opengles.h ├── SDL_opengles2.h ├── SDL_pixels.h ├── SDL_platform.h ├── SDL_power.h ├── SDL_quit.h ├── SDL_rect.h ├── SDL_render.h ├── SDL_revision.h ├── SDL_rwops.h ├── SDL_scancode.h ├── SDL_shape.h ├── SDL_stdinc.h ├── SDL_surface.h ├── SDL_system.h ├── SDL_syswm.h ├── SDL_test.h ├── SDL_test_assert.h ├── SDL_test_common.h ├── SDL_test_compare.h ├── SDL_test_crc32.h ├── SDL_test_font.h ├── SDL_test_fuzzer.h ├── SDL_test_harness.h ├── SDL_test_images.h ├── SDL_test_log.h ├── SDL_test_md5.h ├── SDL_test_random.h ├── SDL_thread.h ├── SDL_timer.h ├── SDL_touch.h ├── SDL_types.h ├── SDL_version.h ├── SDL_video.h ├── begin_code.h ├── close_code.h ├── doxyfile ├── ogg ├── Makefile.am ├── Makefile.in ├── config_types.h ├── config_types.h.in ├── ogg.h └── os_types.h ├── smpeg ├── MPEG.h ├── MPEGaction.h ├── MPEGaudio.h ├── MPEGerror.h ├── MPEGfilter.h ├── MPEGlist.h ├── MPEGring.h ├── MPEGstream.h ├── MPEGsystem.h ├── MPEGvideo.h ├── glmovie.h ├── gtv.h └── smpeg.h ├── vorbis ├── Makefile.am ├── Makefile.in ├── codec.h ├── vorbisenc.h └── vorbisfile.h └── vpx ├── vp8.h ├── vp8cx.h ├── vp8dx.h ├── vp8e.h ├── vpx_codec.h ├── vpx_codec_impl_bottom.h ├── vpx_codec_impl_top.h ├── vpx_decoder.h ├── vpx_decoder_compat.h ├── vpx_encoder.h ├── vpx_image.h └── vpx_integer.h /code/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/base64.c -------------------------------------------------------------------------------- /code/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/base64.h -------------------------------------------------------------------------------- /code/base64_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/base64_test.c -------------------------------------------------------------------------------- /code/crash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/crash.cpp -------------------------------------------------------------------------------- /code/crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/crash.h -------------------------------------------------------------------------------- /code/csteam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/csteam.cpp -------------------------------------------------------------------------------- /code/csteam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/csteam.h -------------------------------------------------------------------------------- /code/dnAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/dnAPI.cpp -------------------------------------------------------------------------------- /code/dnAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/dnAPI.h -------------------------------------------------------------------------------- /code/dnAPI_globals.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/dnAchievement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/dnAchievement.cpp -------------------------------------------------------------------------------- /code/dnAchievement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/dnAchievement.h -------------------------------------------------------------------------------- /code/dnMouseInput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/dnMouseInput.c -------------------------------------------------------------------------------- /code/dnMouseInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/dnMouseInput.h -------------------------------------------------------------------------------- /code/dnMulti.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/dnMulti.cpp -------------------------------------------------------------------------------- /code/dnMulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/dnMulti.h -------------------------------------------------------------------------------- /code/dnSnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/dnSnapshot.cpp -------------------------------------------------------------------------------- /code/dnSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/dnSnapshot.h -------------------------------------------------------------------------------- /code/dn_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/dn_system.h -------------------------------------------------------------------------------- /code/glguard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/glguard.cpp -------------------------------------------------------------------------------- /code/glguard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/glguard.h -------------------------------------------------------------------------------- /code/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/gui.cpp -------------------------------------------------------------------------------- /code/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/gui.h -------------------------------------------------------------------------------- /code/gui_private.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/gui_private.cpp -------------------------------------------------------------------------------- /code/gui_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/gui_private.h -------------------------------------------------------------------------------- /code/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/helpers.cpp -------------------------------------------------------------------------------- /code/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/helpers.h -------------------------------------------------------------------------------- /code/lintools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/lintools.c -------------------------------------------------------------------------------- /code/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/log.cpp -------------------------------------------------------------------------------- /code/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/log.h -------------------------------------------------------------------------------- /code/mactools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/mactools.h -------------------------------------------------------------------------------- /code/mactools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/mactools.m -------------------------------------------------------------------------------- /code/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/miniz.h -------------------------------------------------------------------------------- /code/mode_detect_osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/mode_detect_osx.m -------------------------------------------------------------------------------- /code/mode_detect_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/mode_detect_win32.c -------------------------------------------------------------------------------- /code/playvpx/playvpx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/playvpx/playvpx.cpp -------------------------------------------------------------------------------- /code/playvpx/playvpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/playvpx/playvpx.h -------------------------------------------------------------------------------- /code/rocket/FrameAnimationDecorator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/FrameAnimationDecorator.cpp -------------------------------------------------------------------------------- /code/rocket/FrameAnimationDecorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/FrameAnimationDecorator.h -------------------------------------------------------------------------------- /code/rocket/FrameAnimationDecoratorInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/FrameAnimationDecoratorInstancer.h -------------------------------------------------------------------------------- /code/rocket/FrameAnimationDectoratorInstancer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/FrameAnimationDectoratorInstancer.cpp -------------------------------------------------------------------------------- /code/rocket/PluginUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/PluginUtils.cpp -------------------------------------------------------------------------------- /code/rocket/PluginUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/PluginUtils.h -------------------------------------------------------------------------------- /code/rocket/PythonInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/PythonInterface.cpp -------------------------------------------------------------------------------- /code/rocket/PythonInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/PythonInterface.h -------------------------------------------------------------------------------- /code/rocket/RocketAnimationPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/RocketAnimationPlugin.cpp -------------------------------------------------------------------------------- /code/rocket/RocketAnimationPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/RocketAnimationPlugin.h -------------------------------------------------------------------------------- /code/rocket/RocketMenuPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/RocketMenuPlugin.cpp -------------------------------------------------------------------------------- /code/rocket/RocketMenuPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/RocketMenuPlugin.h -------------------------------------------------------------------------------- /code/rocket/ShellFileInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/ShellFileInterface.cpp -------------------------------------------------------------------------------- /code/rocket/ShellFileInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/ShellFileInterface.h -------------------------------------------------------------------------------- /code/rocket/ShellOpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/ShellOpenGL.h -------------------------------------------------------------------------------- /code/rocket/ShellRenderInterfaceOpenGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/ShellRenderInterfaceOpenGL.cpp -------------------------------------------------------------------------------- /code/rocket/ShellRenderInterfaceOpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/ShellRenderInterfaceOpenGL.h -------------------------------------------------------------------------------- /code/rocket/ShellSystemInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/ShellSystemInterface.cpp -------------------------------------------------------------------------------- /code/rocket/ShellSystemInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/rocket/ShellSystemInterface.h -------------------------------------------------------------------------------- /code/sdl2_compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/sdl2_compat.cpp -------------------------------------------------------------------------------- /code/wintools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/wintools.c -------------------------------------------------------------------------------- /code/wintools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/code/wintools.h -------------------------------------------------------------------------------- /duke3d.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d.sln -------------------------------------------------------------------------------- /duke3d/duke3d-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d-Info.plist -------------------------------------------------------------------------------- /duke3d/duke3d.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.vcproj -------------------------------------------------------------------------------- /duke3d/duke3d.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.vcxproj -------------------------------------------------------------------------------- /duke3d/duke3d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /duke3d/duke3d.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /duke3d/duke3d.xcodeproj/project.xcworkspace/xcshareddata/duke3d.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.xcodeproj/project.xcworkspace/xcshareddata/duke3d.xccheckout -------------------------------------------------------------------------------- /duke3d/duke3d.xcodeproj/project.xcworkspace/xcuserdata/termit.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.xcodeproj/project.xcworkspace/xcuserdata/termit.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /duke3d/duke3d.xcodeproj/project.xcworkspace/xcuserdata/termit.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.xcodeproj/project.xcworkspace/xcuserdata/termit.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /duke3d/duke3d.xcodeproj/xcuserdata/termit.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.xcodeproj/xcuserdata/termit.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /duke3d/duke3d.xcodeproj/xcuserdata/termit.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.xcodeproj/xcuserdata/termit.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /duke3d/duke3d.xcodeproj/xcuserdata/termit.xcuserdatad/xcschemes/duke3d.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.xcodeproj/xcuserdata/termit.xcuserdatad/xcschemes/duke3d.xcscheme -------------------------------------------------------------------------------- /duke3d/duke3d.xcodeproj/xcuserdata/termit.xcuserdatad/xcschemes/duke3d_w_SDL.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.xcodeproj/xcuserdata/termit.xcuserdatad/xcschemes/duke3d_w_SDL.xcscheme -------------------------------------------------------------------------------- /duke3d/duke3d.xcodeproj/xcuserdata/termit.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/duke3d/duke3d.xcodeproj/xcuserdata/termit.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /gameroot/data/conf.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/conf.rcss -------------------------------------------------------------------------------- /gameroot/data/confirmation.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/confirmation.rcss -------------------------------------------------------------------------------- /gameroot/data/credits.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/credits.rml -------------------------------------------------------------------------------- /gameroot/data/episodes.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/episodes.rml -------------------------------------------------------------------------------- /gameroot/data/game.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/game.rml -------------------------------------------------------------------------------- /gameroot/data/ingamemenu.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/ingamemenu.rml -------------------------------------------------------------------------------- /gameroot/data/keyprompt.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/keyprompt.rml -------------------------------------------------------------------------------- /gameroot/data/keys.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/keys.rml -------------------------------------------------------------------------------- /gameroot/data/loadgame.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/loadgame.rml -------------------------------------------------------------------------------- /gameroot/data/mainmenu.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/mainmenu.rml -------------------------------------------------------------------------------- /gameroot/data/mainmenu_1.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/mainmenu_1.rml -------------------------------------------------------------------------------- /gameroot/data/mainmenu_2.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/mainmenu_2.rml -------------------------------------------------------------------------------- /gameroot/data/mainmenu_3.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/mainmenu_3.rml -------------------------------------------------------------------------------- /gameroot/data/menu.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/menu.rcss -------------------------------------------------------------------------------- /gameroot/data/menubg.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/menubg.rml -------------------------------------------------------------------------------- /gameroot/data/menubg_1.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/menubg_1.rml -------------------------------------------------------------------------------- /gameroot/data/menubg_2.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/menubg_2.rml -------------------------------------------------------------------------------- /gameroot/data/menubg_3.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/menubg_3.rml -------------------------------------------------------------------------------- /gameroot/data/mouse.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/mouse.rml -------------------------------------------------------------------------------- /gameroot/data/options.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/options.rml -------------------------------------------------------------------------------- /gameroot/data/pointer.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/pointer.rml -------------------------------------------------------------------------------- /gameroot/data/savegame.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/savegame.rml -------------------------------------------------------------------------------- /gameroot/data/saveload.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/saveload.rcss -------------------------------------------------------------------------------- /gameroot/data/scrollbar.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/scrollbar.rcss -------------------------------------------------------------------------------- /gameroot/data/skill.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/skill.rml -------------------------------------------------------------------------------- /gameroot/data/skill_3.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/skill_3.rml -------------------------------------------------------------------------------- /gameroot/data/skillep.rcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/skillep.rcss -------------------------------------------------------------------------------- /gameroot/data/sound.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/sound.rml -------------------------------------------------------------------------------- /gameroot/data/start.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/start.rml -------------------------------------------------------------------------------- /gameroot/data/video.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/video.rml -------------------------------------------------------------------------------- /gameroot/data/videoconfirm.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/videoconfirm.rml -------------------------------------------------------------------------------- /gameroot/data/yesno.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/data/yesno.rml -------------------------------------------------------------------------------- /gameroot/duke3d-megaton.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/duke3d-megaton.def -------------------------------------------------------------------------------- /gameroot/duke3d-megaton_3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/gameroot/duke3d-megaton_3.def -------------------------------------------------------------------------------- /jfaudiolib/OggPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/OggPlayer.cpp -------------------------------------------------------------------------------- /jfaudiolib/OggPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/OggPlayer.h -------------------------------------------------------------------------------- /jfaudiolib/_midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/_midi.h -------------------------------------------------------------------------------- /jfaudiolib/_multivc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/_multivc.h -------------------------------------------------------------------------------- /jfaudiolib/asssys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/asssys.c -------------------------------------------------------------------------------- /jfaudiolib/asssys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/asssys.h -------------------------------------------------------------------------------- /jfaudiolib/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/cd.c -------------------------------------------------------------------------------- /jfaudiolib/cd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/cd.h -------------------------------------------------------------------------------- /jfaudiolib/driver_coreaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/driver_coreaudio.c -------------------------------------------------------------------------------- /jfaudiolib/driver_coreaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/driver_coreaudio.h -------------------------------------------------------------------------------- /jfaudiolib/driver_directsound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/driver_directsound.c -------------------------------------------------------------------------------- /jfaudiolib/driver_directsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/driver_directsound.h -------------------------------------------------------------------------------- /jfaudiolib/driver_nosound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/driver_nosound.c -------------------------------------------------------------------------------- /jfaudiolib/driver_nosound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/driver_nosound.h -------------------------------------------------------------------------------- /jfaudiolib/driver_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/driver_sdl.c -------------------------------------------------------------------------------- /jfaudiolib/driver_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/driver_sdl.h -------------------------------------------------------------------------------- /jfaudiolib/driver_winmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/driver_winmm.c -------------------------------------------------------------------------------- /jfaudiolib/driver_winmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/driver_winmm.h -------------------------------------------------------------------------------- /jfaudiolib/drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/drivers.c -------------------------------------------------------------------------------- /jfaudiolib/drivers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/drivers.h -------------------------------------------------------------------------------- /jfaudiolib/dsound_oggplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/dsound_oggplayer.cpp -------------------------------------------------------------------------------- /jfaudiolib/dsound_oggplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/dsound_oggplayer.h -------------------------------------------------------------------------------- /jfaudiolib/flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/flac.c -------------------------------------------------------------------------------- /jfaudiolib/formats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/formats.c -------------------------------------------------------------------------------- /jfaudiolib/fx_man.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/fx_man.c -------------------------------------------------------------------------------- /jfaudiolib/fx_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/fx_man.h -------------------------------------------------------------------------------- /jfaudiolib/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/inttypes.h -------------------------------------------------------------------------------- /jfaudiolib/linklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/linklist.h -------------------------------------------------------------------------------- /jfaudiolib/ll_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/ll_man.h -------------------------------------------------------------------------------- /jfaudiolib/midi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/midi.c -------------------------------------------------------------------------------- /jfaudiolib/midi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/midi.h -------------------------------------------------------------------------------- /jfaudiolib/midifuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/midifuncs.h -------------------------------------------------------------------------------- /jfaudiolib/mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/mix.c -------------------------------------------------------------------------------- /jfaudiolib/mixst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/mixst.c -------------------------------------------------------------------------------- /jfaudiolib/mpu401.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/mpu401.c -------------------------------------------------------------------------------- /jfaudiolib/mpu401.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/mpu401.h -------------------------------------------------------------------------------- /jfaudiolib/multivoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/multivoc.c -------------------------------------------------------------------------------- /jfaudiolib/multivoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/multivoc.h -------------------------------------------------------------------------------- /jfaudiolib/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/music.c -------------------------------------------------------------------------------- /jfaudiolib/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/music.h -------------------------------------------------------------------------------- /jfaudiolib/pitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/pitch.c -------------------------------------------------------------------------------- /jfaudiolib/pitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/pitch.h -------------------------------------------------------------------------------- /jfaudiolib/sdlmusic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/sdlmusic.c -------------------------------------------------------------------------------- /jfaudiolib/sndcards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/sndcards.h -------------------------------------------------------------------------------- /jfaudiolib/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/standard.h -------------------------------------------------------------------------------- /jfaudiolib/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/stdint.h -------------------------------------------------------------------------------- /jfaudiolib/vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfaudiolib/vorbis.c -------------------------------------------------------------------------------- /jfbuild/a-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/a-c.c -------------------------------------------------------------------------------- /jfbuild/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/a.h -------------------------------------------------------------------------------- /jfbuild/baselayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/baselayer.c -------------------------------------------------------------------------------- /jfbuild/baselayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/baselayer.h -------------------------------------------------------------------------------- /jfbuild/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/build.h -------------------------------------------------------------------------------- /jfbuild/cache1d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/cache1d.c -------------------------------------------------------------------------------- /jfbuild/cache1d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/cache1d.h -------------------------------------------------------------------------------- /jfbuild/common_build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/common_build.c -------------------------------------------------------------------------------- /jfbuild/common_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/common_build.h -------------------------------------------------------------------------------- /jfbuild/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/compat.c -------------------------------------------------------------------------------- /jfbuild/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/compat.h -------------------------------------------------------------------------------- /jfbuild/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/crc32.c -------------------------------------------------------------------------------- /jfbuild/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/crc32.h -------------------------------------------------------------------------------- /jfbuild/defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/defs.c -------------------------------------------------------------------------------- /jfbuild/dxdidf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/dxdidf.h -------------------------------------------------------------------------------- /jfbuild/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/editor.h -------------------------------------------------------------------------------- /jfbuild/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/engine.c -------------------------------------------------------------------------------- /jfbuild/engine_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/engine_priv.h -------------------------------------------------------------------------------- /jfbuild/glbuild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/glbuild.c -------------------------------------------------------------------------------- /jfbuild/glbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/glbuild.h -------------------------------------------------------------------------------- /jfbuild/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/glext.h -------------------------------------------------------------------------------- /jfbuild/hightile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/hightile.c -------------------------------------------------------------------------------- /jfbuild/hightile_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/hightile_priv.h -------------------------------------------------------------------------------- /jfbuild/kplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/kplib.c -------------------------------------------------------------------------------- /jfbuild/kplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/kplib.h -------------------------------------------------------------------------------- /jfbuild/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/lz4.c -------------------------------------------------------------------------------- /jfbuild/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/lz4.h -------------------------------------------------------------------------------- /jfbuild/lz4_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/lz4_encoder.h -------------------------------------------------------------------------------- /jfbuild/lzf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/lzf.h -------------------------------------------------------------------------------- /jfbuild/lzfP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/lzfP.h -------------------------------------------------------------------------------- /jfbuild/lzf_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/lzf_c.c -------------------------------------------------------------------------------- /jfbuild/lzf_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/lzf_d.c -------------------------------------------------------------------------------- /jfbuild/lzwnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/lzwnew.c -------------------------------------------------------------------------------- /jfbuild/lzwnew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/lzwnew.h -------------------------------------------------------------------------------- /jfbuild/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/md4.c -------------------------------------------------------------------------------- /jfbuild/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/md4.h -------------------------------------------------------------------------------- /jfbuild/mdsprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/mdsprite.c -------------------------------------------------------------------------------- /jfbuild/mdsprite_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/mdsprite_priv.h -------------------------------------------------------------------------------- /jfbuild/mmulti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/mmulti.c -------------------------------------------------------------------------------- /jfbuild/mmulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/mmulti.h -------------------------------------------------------------------------------- /jfbuild/mmulti_steam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/mmulti_steam.c -------------------------------------------------------------------------------- /jfbuild/mmultimsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/mmultimsgs.h -------------------------------------------------------------------------------- /jfbuild/osd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/osd.c -------------------------------------------------------------------------------- /jfbuild/osd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/osd.h -------------------------------------------------------------------------------- /jfbuild/polymost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/polymost.c -------------------------------------------------------------------------------- /jfbuild/polymost_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/polymost_priv.h -------------------------------------------------------------------------------- /jfbuild/polymosttex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/polymosttex.c -------------------------------------------------------------------------------- /jfbuild/polymosttex_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/polymosttex_priv.h -------------------------------------------------------------------------------- /jfbuild/polymosttexcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/polymosttexcache.c -------------------------------------------------------------------------------- /jfbuild/polymosttexcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/polymosttexcache.h -------------------------------------------------------------------------------- /jfbuild/pragmas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/pragmas.c -------------------------------------------------------------------------------- /jfbuild/pragmas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/pragmas.h -------------------------------------------------------------------------------- /jfbuild/scriptfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/scriptfile.c -------------------------------------------------------------------------------- /jfbuild/scriptfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/scriptfile.h -------------------------------------------------------------------------------- /jfbuild/sdlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/sdlayer.c -------------------------------------------------------------------------------- /jfbuild/sdlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/sdlayer.h -------------------------------------------------------------------------------- /jfbuild/smalltextfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/smalltextfont.c -------------------------------------------------------------------------------- /jfbuild/textfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfbuild/textfont.c -------------------------------------------------------------------------------- /jfduke3d/GameListSource.game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/GameListSource.game.h -------------------------------------------------------------------------------- /jfduke3d/_functio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/_functio.h -------------------------------------------------------------------------------- /jfduke3d/_rts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/_rts.h -------------------------------------------------------------------------------- /jfduke3d/actors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/actors.c -------------------------------------------------------------------------------- /jfduke3d/build_icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/build_icon.c -------------------------------------------------------------------------------- /jfduke3d/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/config.c -------------------------------------------------------------------------------- /jfduke3d/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/config.h -------------------------------------------------------------------------------- /jfduke3d/develop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/develop.h -------------------------------------------------------------------------------- /jfduke3d/duke3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/duke3d.h -------------------------------------------------------------------------------- /jfduke3d/funct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/funct.h -------------------------------------------------------------------------------- /jfduke3d/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/function.h -------------------------------------------------------------------------------- /jfduke3d/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/game.c -------------------------------------------------------------------------------- /jfduke3d/gamedef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/gamedef.c -------------------------------------------------------------------------------- /jfduke3d/gamedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/gamedefs.h -------------------------------------------------------------------------------- /jfduke3d/global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/global.c -------------------------------------------------------------------------------- /jfduke3d/grpscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/grpscan.c -------------------------------------------------------------------------------- /jfduke3d/grpscan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/grpscan.h -------------------------------------------------------------------------------- /jfduke3d/menues.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/menues.c -------------------------------------------------------------------------------- /jfduke3d/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/names.h -------------------------------------------------------------------------------- /jfduke3d/osdcmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/osdcmds.c -------------------------------------------------------------------------------- /jfduke3d/osdcmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/osdcmds.h -------------------------------------------------------------------------------- /jfduke3d/osdfuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/osdfuncs.c -------------------------------------------------------------------------------- /jfduke3d/osdfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/osdfuncs.h -------------------------------------------------------------------------------- /jfduke3d/player.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/player.c -------------------------------------------------------------------------------- /jfduke3d/premap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/premap.c -------------------------------------------------------------------------------- /jfduke3d/rts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/rts.c -------------------------------------------------------------------------------- /jfduke3d/rts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/rts.h -------------------------------------------------------------------------------- /jfduke3d/sector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/sector.c -------------------------------------------------------------------------------- /jfduke3d/soundefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/soundefs.h -------------------------------------------------------------------------------- /jfduke3d/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/sounds.c -------------------------------------------------------------------------------- /jfduke3d/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/sounds.h -------------------------------------------------------------------------------- /jfduke3d/startwin.game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/startwin.game.c -------------------------------------------------------------------------------- /jfduke3d/startwin.game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/startwin.game.h -------------------------------------------------------------------------------- /jfduke3d/testcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/testcd.c -------------------------------------------------------------------------------- /jfduke3d/winbits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfduke3d/winbits.c -------------------------------------------------------------------------------- /jfmact/_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/_control.h -------------------------------------------------------------------------------- /jfmact/_scrplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/_scrplib.h -------------------------------------------------------------------------------- /jfmact/animlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/animlib.c -------------------------------------------------------------------------------- /jfmact/animlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/animlib.h -------------------------------------------------------------------------------- /jfmact/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/control.c -------------------------------------------------------------------------------- /jfmact/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/control.h -------------------------------------------------------------------------------- /jfmact/develop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/develop.h -------------------------------------------------------------------------------- /jfmact/file_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/file_lib.c -------------------------------------------------------------------------------- /jfmact/file_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/file_lib.h -------------------------------------------------------------------------------- /jfmact/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/keyboard.c -------------------------------------------------------------------------------- /jfmact/keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/keyboard.h -------------------------------------------------------------------------------- /jfmact/mathutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/mathutil.c -------------------------------------------------------------------------------- /jfmact/mathutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/mathutil.h -------------------------------------------------------------------------------- /jfmact/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/mouse.c -------------------------------------------------------------------------------- /jfmact/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/mouse.h -------------------------------------------------------------------------------- /jfmact/scriplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/scriplib.c -------------------------------------------------------------------------------- /jfmact/scriplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/scriplib.h -------------------------------------------------------------------------------- /jfmact/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/types.h -------------------------------------------------------------------------------- /jfmact/util_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/util_lib.c -------------------------------------------------------------------------------- /jfmact/util_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/jfmact/util_lib.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D2D1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D2D1.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D2D1Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D2D1Helper.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D2DBaseTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D2DBaseTypes.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D2Derr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D2Derr.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3D10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3D10.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3D10_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3D10_1.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3D10_1shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3D10_1shader.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3D10effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3D10effect.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3D10shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3D10shader.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3D11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3D11.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3D11SDKLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3D11SDKLayers.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3D11Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3D11Shader.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DCSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DCSX.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DX10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DX10.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DX10core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DX10core.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DX10math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DX10math.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DX10math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DX10math.inl -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DX10mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DX10mesh.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DX10tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DX10tex.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DX11.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DX11async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DX11async.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DX11core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DX11core.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DX11tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DX11tex.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3DX_DXGIFormatConvert.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3DX_DXGIFormatConvert.inl -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3Dcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3Dcommon.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/D3Dcompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/D3Dcompiler.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/DWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/DWrite.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/DXGI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/DXGI.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/DXGIFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/DXGIFormat.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/DXGIType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/DXGIType.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/Dcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/Dcommon.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/DxErr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/DxErr.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/PIXPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/PIXPlugin.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/X3DAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/X3DAudio.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/XAPO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/XAPO.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/XAPOBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/XAPOBase.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/XAPOFX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/XAPOFX.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/XAudio2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/XAudio2.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/XAudio2fx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/XAudio2fx.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/XDSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/XDSP.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/XInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/XInput.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/audiodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/audiodefs.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/comdecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/comdecl.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3d10misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3d10misc.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3d10sdklayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3d10sdklayers.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3d9.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3d9caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3d9caps.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3d9types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3d9types.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx10async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx10async.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx9.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx9anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx9anim.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx9core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx9core.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx9effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx9effect.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx9math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx9math.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx9math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx9math.inl -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx9mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx9mesh.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx9shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx9shader.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx9shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx9shape.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx9tex.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/d3dx9xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/d3dx9xof.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/dinput.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/dinputd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/dinputd.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/dsconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/dsconf.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/dsetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/dsetup.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/dsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/dsound.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/dxdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/dxdiag.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/dxfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/dxfile.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/dxsdkver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/dxsdkver.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/gameux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/gameux.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/rmxfguid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/rmxfguid.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/rmxftmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/rmxftmpl.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/rpcsal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/rpcsal.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/xact3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/xact3.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/xact3d3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/xact3d3.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/xact3wb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/xact3wb.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/xma2defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/xma2defs.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/xnamath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/xnamath.h -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/xnamathconvert.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/xnamathconvert.inl -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/xnamathmatrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/xnamathmatrix.inl -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/xnamathmisc.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/xnamathmisc.inl -------------------------------------------------------------------------------- /thirdparty/dxsdk/include/xnamathvector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/dxsdk/include/xnamathvector.inl -------------------------------------------------------------------------------- /thirdparty/frameworks/ogg.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /thirdparty/frameworks/ogg.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /thirdparty/frameworks/ogg.framework/Versions/A/Headers/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/frameworks/ogg.framework/Versions/A/Headers/ogg.h -------------------------------------------------------------------------------- /thirdparty/frameworks/ogg.framework/Versions/A/Headers/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/frameworks/ogg.framework/Versions/A/Headers/os_types.h -------------------------------------------------------------------------------- /thirdparty/frameworks/ogg.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/frameworks/ogg.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /thirdparty/frameworks/ogg.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/frameworks/ogg.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /thirdparty/frameworks/ogg.framework/Versions/A/ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/frameworks/ogg.framework/Versions/A/ogg -------------------------------------------------------------------------------- /thirdparty/frameworks/ogg.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /thirdparty/frameworks/ogg.framework/ogg: -------------------------------------------------------------------------------- 1 | Versions/Current/ogg -------------------------------------------------------------------------------- /thirdparty/frameworks/vorbis.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /thirdparty/frameworks/vorbis.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /thirdparty/frameworks/vorbis.framework/Versions/A/Headers/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/frameworks/vorbis.framework/Versions/A/Headers/codec.h -------------------------------------------------------------------------------- /thirdparty/frameworks/vorbis.framework/Versions/A/Headers/vorbisenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/frameworks/vorbis.framework/Versions/A/Headers/vorbisenc.h -------------------------------------------------------------------------------- /thirdparty/frameworks/vorbis.framework/Versions/A/Headers/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/frameworks/vorbis.framework/Versions/A/Headers/vorbisfile.h -------------------------------------------------------------------------------- /thirdparty/frameworks/vorbis.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/frameworks/vorbis.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /thirdparty/frameworks/vorbis.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/frameworks/vorbis.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /thirdparty/frameworks/vorbis.framework/Versions/A/vorbis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/frameworks/vorbis.framework/Versions/A/vorbis -------------------------------------------------------------------------------- /thirdparty/frameworks/vorbis.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /thirdparty/frameworks/vorbis.framework/vorbis: -------------------------------------------------------------------------------- 1 | Versions/Current/vorbis -------------------------------------------------------------------------------- /thirdparty/include/CrashRpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/CrashRpt.h -------------------------------------------------------------------------------- /thirdparty/include/CrashRptProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/CrashRptProbe.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/Clipboard.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/Controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/Controls.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/DataFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/DataFormatter.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/DataQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/DataQuery.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/DataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/DataSource.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/DataSourceListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/DataSourceListener.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/ElementDataGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/ElementDataGrid.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/ElementDataGridCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/ElementDataGridCell.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/ElementDataGridExpandButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/ElementDataGridExpandButton.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/ElementDataGridRow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/ElementDataGridRow.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/ElementForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/ElementForm.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/ElementFormControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/ElementFormControl.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/ElementFormControlDataSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/ElementFormControlDataSelect.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/ElementFormControlInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/ElementFormControlInput.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/ElementFormControlSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/ElementFormControlSelect.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/ElementFormControlTextArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/ElementFormControlTextArea.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/ElementTabSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/ElementTabSet.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/Header.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Controls/SelectOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Controls/SelectOption.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/BaseXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/BaseXMLParser.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Box.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Colour.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Colour.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Colour.inl -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Context.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ContextInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ContextInstancer.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ConvolutionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ConvolutionFilter.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Core.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Debug.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Decorator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Decorator.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/DecoratorInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/DecoratorInstancer.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Dictionary.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Dictionary.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Dictionary.inl -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Element.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Element.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Element.inl -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ElementDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ElementDocument.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ElementInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ElementInstancer.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ElementInstancerGeneric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ElementInstancerGeneric.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ElementInstancerGeneric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ElementInstancerGeneric.inl -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ElementReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ElementReference.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ElementScroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ElementScroll.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ElementText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ElementText.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ElementUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ElementUtilities.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Event.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/EventInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/EventInstancer.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/EventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/EventListener.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/EventListenerInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/EventListenerInstancer.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Factory.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/FileInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/FileInterface.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Font.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/FontDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/FontDatabase.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/FontEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/FontEffect.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/FontEffectInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/FontEffectInstancer.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/FontGlyph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/FontGlyph.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Geometry.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/GeometryUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/GeometryUtilities.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Header.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Input.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Log.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Math.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/MathTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/MathTypes.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Platform.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Plugin.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Pool.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Pool.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Pool.inl -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Property.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/PropertyDefinition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/PropertyDefinition.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/PropertyDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/PropertyDictionary.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/PropertyParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/PropertyParser.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/PropertySpecification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/PropertySpecification.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Python/ConverterScriptObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Python/ConverterScriptObject.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Python/ElementInstancer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Python/ElementInstancer.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Python/ElementWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Python/ElementWrapper.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Python/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Python/Header.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Python/NameIndexInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Python/NameIndexInterface.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Python/PickleTypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Python/PickleTypeConverter.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Python/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Python/Python.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Python/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Python/Utilities.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Python/VectorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Python/VectorInterface.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Python/Wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Python/Wrapper.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Python/WrapperIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Python/WrapperIter.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ReferenceCountable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ReferenceCountable.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/RenderInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/RenderInterface.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/ScriptInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/ScriptInterface.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Stream.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/StreamMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/StreamMemory.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/String.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/StringBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/StringBase.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/StringBase.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/StringBase.inl -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/StringStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/StringStorage.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/StringUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/StringUtilities.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/StyleSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/StyleSheet.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/StyleSheetKeywords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/StyleSheetKeywords.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/StyleSheetSpecification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/StyleSheetSpecification.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/SystemInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/SystemInterface.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Texture.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/TypeConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/TypeConverter.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/TypeConverter.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/TypeConverter.inl -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Types.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/URL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/URL.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Variant.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Variant.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Variant.inl -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Vector2.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Vector2.inl -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/Vertex.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/WString.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/XMLNodeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/XMLNodeHandler.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Core/XMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Core/XMLParser.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Debugger.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Debugger/Debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Debugger/Debugger.h -------------------------------------------------------------------------------- /thirdparty/include/Rocket/Debugger/Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/Rocket/Debugger/Header.h -------------------------------------------------------------------------------- /thirdparty/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_active.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_assert.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_atomic.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_audio.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_bits.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_blendmode.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_byteorder.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_cdrom.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_clipboard.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config.h.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config.h.default -------------------------------------------------------------------------------- /thirdparty/include/SDL_config.h.generated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config.h.generated -------------------------------------------------------------------------------- /thirdparty/include/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config.h.in -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_android.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_dreamcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_dreamcast.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_macos.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_macosx.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_minimal.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_nds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_nds.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_os2.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_pandora.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_psp.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_symbian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_symbian.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_win32.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_windows.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_config_wiz.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_copying.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_cpuinfo.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_endian.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_error.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_events.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_filesystem.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_gamecontroller.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_gesture.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_getenv.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_haptic.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_hints.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_joystick.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_keyboard.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_keycode.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_keysym.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_loadso.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_log.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_main.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_messagebox.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_mouse.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_mutex.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_name.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_opengl.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_opengles.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_opengles2.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_pixels.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_platform.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_power.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_quit.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_rect.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_render.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_revision.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_rwops.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_scancode.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_shape.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_stdinc.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_surface.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_system.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_syswm.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test_assert.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test_common.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test_compare.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test_crc32.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test_font.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test_harness.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test_images.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test_log.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test_md5.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_test_random.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_thread.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_timer.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_touch.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_types.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_version.h -------------------------------------------------------------------------------- /thirdparty/include/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/SDL_video.h -------------------------------------------------------------------------------- /thirdparty/include/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/begin_code.h -------------------------------------------------------------------------------- /thirdparty/include/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/close_code.h -------------------------------------------------------------------------------- /thirdparty/include/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/doxyfile -------------------------------------------------------------------------------- /thirdparty/include/ogg/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/ogg/Makefile.am -------------------------------------------------------------------------------- /thirdparty/include/ogg/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/ogg/Makefile.in -------------------------------------------------------------------------------- /thirdparty/include/ogg/config_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/ogg/config_types.h -------------------------------------------------------------------------------- /thirdparty/include/ogg/config_types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/ogg/config_types.h.in -------------------------------------------------------------------------------- /thirdparty/include/ogg/ogg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/ogg/ogg.h -------------------------------------------------------------------------------- /thirdparty/include/ogg/os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/ogg/os_types.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/MPEG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/MPEG.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/MPEGaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/MPEGaction.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/MPEGaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/MPEGaudio.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/MPEGerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/MPEGerror.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/MPEGfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/MPEGfilter.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/MPEGlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/MPEGlist.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/MPEGring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/MPEGring.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/MPEGstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/MPEGstream.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/MPEGsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/MPEGsystem.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/MPEGvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/MPEGvideo.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/glmovie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/glmovie.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/gtv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/gtv.h -------------------------------------------------------------------------------- /thirdparty/include/smpeg/smpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/smpeg/smpeg.h -------------------------------------------------------------------------------- /thirdparty/include/vorbis/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vorbis/Makefile.am -------------------------------------------------------------------------------- /thirdparty/include/vorbis/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vorbis/Makefile.in -------------------------------------------------------------------------------- /thirdparty/include/vorbis/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vorbis/codec.h -------------------------------------------------------------------------------- /thirdparty/include/vorbis/vorbisenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vorbis/vorbisenc.h -------------------------------------------------------------------------------- /thirdparty/include/vorbis/vorbisfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vorbis/vorbisfile.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vp8.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vp8cx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vp8cx.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vp8dx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vp8dx.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vp8e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vp8e.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vpx_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vpx_codec.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vpx_codec_impl_bottom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vpx_codec_impl_bottom.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vpx_codec_impl_top.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vpx_codec_impl_top.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vpx_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vpx_decoder.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vpx_decoder_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vpx_decoder_compat.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vpx_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vpx_encoder.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vpx_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vpx_image.h -------------------------------------------------------------------------------- /thirdparty/include/vpx/vpx_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TermiT/duke3d-megaton/HEAD/thirdparty/include/vpx/vpx_integer.h --------------------------------------------------------------------------------