├── .cproject ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .project ├── .pydevproject ├── .vscode ├── launch.json └── tasks.json ├── BSD ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── GPL ├── LGPL ├── LICENSE ├── README.md ├── SConscript.lib ├── SConscript.module ├── SConscript.q3data ├── SConscript.q3map2 ├── SConscript.q3map2.urt ├── SConscript.radiant ├── SConstruct ├── TRANSLATING ├── apple ├── GtkRadiant.app │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── radiant │ │ └── Resources │ │ ├── etc │ │ ├── fonts │ │ │ └── fonts.conf │ │ ├── gtk-2.0 │ │ │ └── gtkrc │ │ └── pango │ │ │ └── pangorc │ │ ├── lib │ │ └── .turd │ │ ├── radiant.icns │ │ └── share │ │ └── gtk-2.0 │ │ ├── icons │ │ └── .turd │ │ └── themes │ │ └── .turd ├── Makefile └── README.md ├── config.py ├── contrib ├── bkgrnd2d │ ├── bkgrnd2d.cpp │ ├── bkgrnd2d.def │ ├── bkgrnd2d.h │ ├── bkgrnd2d.vcxproj │ ├── bkgrnd2d.vcxproj.filters │ ├── dialog.cpp │ ├── dialog.h │ ├── plugin.cpp │ ├── plugin.h │ └── readme_bkgrnd2d-b0.25.txt ├── bobtoolz │ ├── CPortals.h │ ├── DBobView.cpp │ ├── DBobView.h │ ├── DBrush.cpp │ ├── DBrush.h │ ├── DEPair.cpp │ ├── DEPair.h │ ├── DEntity.cpp │ ├── DEntity.h │ ├── DListener.cpp │ ├── DListener.h │ ├── DMap.cpp │ ├── DMap.h │ ├── DPatch.cpp │ ├── DPatch.h │ ├── DPlane.cpp │ ├── DPlane.h │ ├── DPoint.cpp │ ├── DPoint.h │ ├── DShape.cpp │ ├── DShape.h │ ├── DTrainDrawer.cpp │ ├── DTrainDrawer.h │ ├── DTreePlanter.cpp │ ├── DTreePlanter.h │ ├── DVisDrawer.cpp │ ├── DVisDrawer.h │ ├── DWinding.cpp │ ├── DWinding.h │ ├── ScriptParser.cpp │ ├── ScriptParser.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── bobToolz-GTK.cpp │ ├── bobToolz.h │ ├── bobToolz.rc │ ├── bobtoolz-gtk.rc │ ├── bobtoolz.def │ ├── bobtoolz.vcxproj │ ├── bobtoolz.vcxproj.filters │ ├── bsploader.cpp │ ├── bsploader.h │ ├── bt │ │ ├── bt-el1.txt │ │ ├── bt-el2.txt │ │ ├── ctf-blue.txt │ │ ├── ctf-red.txt │ │ ├── door-tex-trim.txt │ │ ├── door-tex.txt │ │ └── tp_ent.txt │ ├── cportals.cpp │ ├── ctfToolz-GTK.cpp │ ├── ctfresource_gtk.h │ ├── ctfresource_gtk.rc │ ├── ctftoolz.def │ ├── dialogs │ │ ├── AboutDialog.cpp │ │ ├── AboutDialog.h │ │ ├── AutoCaulkDialog.cpp │ │ ├── AutoCaulkDialog.h │ │ ├── AutoCaulkStartDialog.cpp │ │ ├── AutoCaulkStartDialog.h │ │ ├── BrushCheckDialog.h │ │ ├── DoorDialog.cpp │ │ ├── DoorDialog.h │ │ ├── IntersectDialog.cpp │ │ ├── IntersectDialog.h │ │ ├── IntersectInfoDialog.cpp │ │ ├── IntersectInfoDialog.h │ │ ├── PolygonDialog.cpp │ │ ├── PolygonDialog.h │ │ ├── StairDialog.cpp │ │ ├── StairDialog.h │ │ ├── TextureResetDialog.cpp │ │ ├── TextureResetDialog.h │ │ ├── brushcheckdialog.cpp │ │ ├── dialogs-gtk.cpp │ │ ├── dialogs-gtk.h │ │ ├── pathplotterdialog.cpp │ │ └── pathplotterdialog.h │ ├── funchandlers-GTK.cpp │ ├── funchandlers-ctf-GTK.cpp │ ├── funchandlers.cpp │ ├── funchandlers.h │ ├── interfaces │ │ └── IScriptParser.h │ ├── lists.cpp │ ├── lists.h │ ├── misc.cpp │ ├── misc.h │ ├── res │ │ └── plugin.rc2 │ ├── resource-gtk.h │ ├── resource.h │ ├── shapes.cpp │ ├── shapes.h │ ├── txt │ │ ├── changelog.txt │ │ └── readme.txt │ ├── visfind.cpp │ └── visfind.h ├── camera │ ├── camera.cpp │ ├── camera.def │ ├── camera.h │ ├── camera.vcxproj │ ├── camera.vcxproj.filters │ ├── dialogs.cpp │ ├── dialogs.h │ ├── dialogs_common.cpp │ ├── funchandlers.cpp │ ├── funchandlers.h │ ├── listener.cpp │ ├── listener.h │ ├── misc.cpp │ ├── misc.h │ ├── renderer.cpp │ └── renderer.h ├── gtkgensurf │ ├── CHANGES │ ├── bitmap.cpp │ ├── dec.cpp │ ├── face.cpp │ ├── font.cpp │ ├── gendlgs.cpp │ ├── gendlgs.h │ ├── genmap.cpp │ ├── gensurf.cpp │ ├── gensurf.h │ ├── gtkgensurf.def │ ├── gtkgensurf.vcxproj │ ├── gtkgensurf.vcxproj.filters │ ├── heretic.cpp │ ├── plugin.cpp │ ├── triangle.c │ ├── triangle.h │ └── view.cpp ├── hydratoolz │ ├── hydratoolz.def │ ├── hydratoolz.vcxproj │ ├── hydratoolz.vcxproj.filters │ ├── plugin.cpp │ └── plugin.h └── prtview │ ├── AboutDialog.cpp │ ├── ConfigDialog.cpp │ ├── LoadPortalFileDialog.cpp │ ├── LoadPortalFileDialog.h │ ├── PrtView.aps │ ├── PrtView.rc │ ├── PrtView.txt │ ├── gtkdlgs.cpp │ ├── gtkdlgs.h │ ├── portals.cpp │ ├── portals.h │ ├── prtview.cpp │ ├── prtview.def │ ├── prtview.h │ ├── prtview.vcxproj │ ├── prtview.vcxproj.filters │ ├── res │ └── PrtView.rc2 │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── docs └── manual │ ├── Q3Rad_Manual │ ├── Q3Rad_Manual_files │ │ ├── image002.png │ │ ├── image003.png │ │ ├── image004.png │ │ ├── image006.png │ │ ├── image008.png │ │ ├── image010.png │ │ ├── image012.png │ │ ├── image014.png │ │ ├── image016.png │ │ ├── image018.png │ │ ├── image020.png │ │ ├── image022.png │ │ ├── image024.png │ │ ├── image026.png │ │ ├── image028.png │ │ ├── image030.png │ │ ├── image032.png │ │ ├── image034.png │ │ ├── image035.png │ │ ├── image038.png │ │ └── image040.png │ ├── appndx │ │ ├── appn_a.htm │ │ ├── appn_b_1.htm │ │ ├── appn_b_2.htm │ │ ├── appn_b_3.htm │ │ ├── appn_b_4.htm │ │ ├── appn_b_5.htm │ │ ├── appn_b_6.htm │ │ ├── appn_b_7.htm │ │ ├── appn_b_8.htm │ │ ├── appn_b_9.htm │ │ ├── appn_c.htm │ │ ├── appn_d.htm │ │ ├── appn_e.htm │ │ ├── appn_f.htm │ │ └── sskey_dl.htm │ ├── ch01 │ │ ├── pg1_1.htm │ │ └── pg1_2.htm │ ├── ch02 │ │ └── pg2_1.htm │ ├── ch03 │ │ └── pg3_1.htm │ ├── ch04 │ │ └── pg4_1.htm │ ├── ch05 │ │ └── pg5_1.htm │ ├── ch06 │ │ └── pg6_1.htm │ ├── ch07 │ │ └── pg7_1.htm │ ├── ch08 │ │ └── pg8_1.htm │ ├── ch09 │ │ └── pg9_1.htm │ ├── ch10 │ │ └── pg10_1.htm │ ├── ch11 │ │ └── pg11_1.htm │ ├── ch12 │ │ └── pg12_1.htm │ ├── gtkrad │ │ └── pg1_1.htm │ ├── index.htm │ └── styles │ │ └── q3rad.css │ └── quake3 │ ├── Compile_Manual │ ├── bspc.txt │ ├── cfgq3.c │ ├── headskins.txt │ ├── index.html │ ├── modelskins.txt │ └── q3map.html │ ├── Model_Manual │ ├── model_manual.htm │ └── styles │ │ └── q3rad.css │ ├── New_Teams_For_Q3TA │ └── index.html │ ├── Q3AShader_Manual │ ├── appendix │ │ └── appA.html │ ├── ch01 │ │ └── pg1_1.htm │ ├── ch02 │ │ └── pg2_1.htm │ ├── ch03 │ │ └── pg3_1.htm │ ├── ch04 │ │ └── pg4_1.htm │ ├── ch05 │ │ └── pg5_1.htm │ ├── ch06 │ │ └── pg6_1.htm │ ├── index.htm │ ├── q3ashader_manual_files │ │ └── image002.jpg │ └── styles │ │ └── q3rad.css │ ├── Team_Arena_Mapping_Help │ ├── pages │ │ ├── design_tips.html │ │ ├── map_converters_checklist.html │ │ ├── preface.html │ │ ├── related_links.html │ │ ├── ta_game_types.html │ │ ├── table_of_contents.htm │ │ ├── team_arena_entity_definitions.html │ │ ├── team_arena_prefabs.html │ │ ├── team_powerup_bases.html │ │ └── using_new_game_entities.html │ ├── pics │ │ ├── CRUSADER.gif │ │ ├── INTRUDER.gif │ │ ├── MAINPOP.gif │ │ ├── MENUBACKgif.gif │ │ ├── PAGANs.gif │ │ ├── STROGGS.gif │ │ ├── THEFALLEN.gif │ │ └── logo.gif │ └── start.html │ └── Terrain_Manual │ ├── pages │ ├── Image3.gif │ ├── Image4.gif │ ├── Image5.gif │ ├── Image6.gif │ ├── adding_bots.html │ ├── adding_buildings_to_terrain.html │ ├── art_tools.html │ ├── blocking_vis.html │ ├── boxing_in_the_world.html │ ├── clipping_the_terrain.html │ ├── creating_the_alphamap.html │ ├── creating_the_terrain.html │ ├── entity_keys_and_values.html │ ├── glossary.html │ ├── height_map_into_terrain_mesh.html │ ├── height_maps.html │ ├── introduction.html │ ├── key_changes.html │ ├── lighting_the_terrain.html │ ├── manipulating_the_terrain_mesh.html │ ├── mapping_the_textures.html │ ├── new_or_revised_q3map_shader_comm.html │ ├── other_possible_height_map_tools.html │ ├── related_links.html │ ├── suggested_gensurf_settings.html │ ├── table_of_contents.html │ ├── terrain_entity.html │ ├── terrain_mesh_into_terrain_entity.html │ ├── terrain_related_worldspawn_features.html │ ├── terrain_texture.html │ └── the_meta_shader.html │ ├── pics │ ├── background.jpg │ ├── start.gif │ └── terrain.jpg │ └── start.html ├── flatpak ├── io.github.TTimo.GtkRadiant.appdata.xml └── io.github.TTimo.GtkRadiant.desktop ├── gtkradiant-flatpak.code-workspace ├── include ├── aboutmsg.default ├── aboutmsg.h ├── gtkr_list.h ├── gtkr_vector.h ├── ibrush.h ├── ibspfrontend.h ├── icamera.h ├── idata.h ├── idatastream.h ├── ieclass.h ├── ientity.h ├── ifilesystem.h ├── ifilters.h ├── igl.h ├── iimage.h ├── imap.h ├── imodel.h ├── ipatch.h ├── iplugin.h ├── irefcount.h ├── iscriplib.h ├── iselectedface.h ├── ishaders.h ├── ishadersmanager.h ├── isurfaceplugin.h ├── itoolbar.h ├── iui.h ├── iui_gtk.h ├── iundo.h ├── misc_def.h ├── qerplugin.h ├── qertypes.h ├── qsysprintf.h ├── stl_check.h ├── stream_version.h ├── version.default └── version.h ├── install.py ├── install ├── .gitignore ├── base │ └── textures │ │ └── radiant │ │ ├── notex.png │ │ └── shadernotex.png ├── bitmaps │ ├── brush_flipx.png │ ├── brush_flipy.png │ ├── brush_flipz.png │ ├── brush_rotatex.png │ ├── brush_rotatey.png │ ├── brush_rotatez.png │ ├── cap_bevel.png │ ├── cap_endcap.png │ ├── cap_ibevel.png │ ├── cap_iendcap.png │ ├── curve_cap.png │ ├── dontselectcurve.png │ ├── dontselectmodel.png │ ├── file_open.png │ ├── file_save.png │ ├── icon.png │ ├── logo.png │ ├── patch_bend.png │ ├── patch_drilldown.png │ ├── patch_insdel.png │ ├── patch_showboundingbox.png │ ├── patch_weld.png │ ├── patch_wireframe.png │ ├── popup_selection.png │ ├── scalelockx.png │ ├── scalelocky.png │ ├── scalelockz.png │ ├── select_mouserotate.png │ ├── select_mousescale.png │ ├── selection_csgmerge.png │ ├── selection_csgsubtract.png │ ├── selection_makehollow.png │ ├── selection_makehollowtouch.png │ ├── selection_selectcompletetall.png │ ├── selection_selectinside.png │ ├── selection_selectpartialtall.png │ ├── selection_selecttouching.png │ ├── show_entities.png │ ├── splash.png │ ├── textures_popup.png │ ├── toggle_detail.png │ ├── toggle_struct.png │ ├── view_cameratoggle.png │ ├── view_cameraupdate.png │ ├── view_change.png │ ├── view_clipper.png │ ├── view_cubicclipping.png │ ├── view_entity.png │ ├── window1.png │ ├── window2.png │ ├── window3.png │ └── window4.png └── modules │ └── bitmaps │ ├── bkgrnd2d_conf.bmp │ ├── bkgrnd2d_xy_toggle.bmp │ ├── bkgrnd2d_xz_toggle.bmp │ ├── bkgrnd2d_yz_toggle.bmp │ ├── bobtoolz_caulk.bmp │ ├── bobtoolz_cleanup.bmp │ ├── bobtoolz_dropent.bmp │ ├── bobtoolz_merge.bmp │ ├── bobtoolz_poly.bmp │ ├── bobtoolz_split.bmp │ ├── bobtoolz_trainpathplot.bmp │ ├── bobtoolz_treeplanter.bmp │ ├── bobtoolz_turnedge.bmp │ ├── camera_insp.bmp │ ├── model_reload_entity.bmp │ ├── picomodel.bmp │ └── sample.bmp ├── libs ├── .gitignore ├── bytebool.h ├── cmdlib.h ├── cmdlib │ ├── cmdlib.cpp │ ├── cmdlib.vcxproj │ └── cmdlib.vcxproj.filters ├── ddslib.h ├── ddslib │ ├── ddslib.c │ ├── ddslib.vcxproj │ └── ddslib.vcxproj.filters ├── igl_to_qgl.h ├── l_net │ ├── l_net.c │ ├── l_net.h │ ├── l_net.vcxproj │ ├── l_net.vcxproj.filters │ ├── l_net_berkeley.c │ ├── l_net_wins.c │ └── l_net_wins.h ├── mathlib.h ├── mathlib │ ├── bbox.c │ ├── m4x4.c │ ├── mathlib.c │ ├── mathlib.vcxproj │ ├── mathlib.vcxproj.filters │ └── ray.c ├── md4lib.h ├── md5lib.h ├── md5lib │ ├── Conscript │ ├── md4.c │ ├── md5lib.c │ ├── md5lib.vcxproj │ └── md5lib.vcxproj.filters ├── missing.h ├── pak │ ├── pakstuff.cpp │ ├── unzip.cpp │ └── unzip.h ├── pakstuff.h ├── picomodel.h ├── picomodel │ ├── lwo │ │ ├── clip.c │ │ ├── envelope.c │ │ ├── list.c │ │ ├── lwio.c │ │ ├── lwo2.c │ │ ├── lwo2.h │ │ ├── lwob.c │ │ ├── pntspols.c │ │ ├── surface.c │ │ ├── vecmath.c │ │ └── vmap.c │ ├── picointernal.c │ ├── picointernal.h │ ├── picomodel.c │ ├── picomodel.vcxproj │ ├── picomodel.vcxproj.filters │ ├── picomodules.c │ ├── pm_3ds.c │ ├── pm_ase.c │ ├── pm_fm.c │ ├── pm_fm.h │ ├── pm_iqm.c │ ├── pm_lwo.c │ ├── pm_md2.c │ ├── pm_md3.c │ ├── pm_mdc.c │ ├── pm_ms3d.c │ ├── pm_obj.c │ └── pm_terrain.c ├── splines │ ├── math_angles.cpp │ ├── math_angles.h │ ├── math_matrix.cpp │ ├── math_matrix.h │ ├── math_quaternion.cpp │ ├── math_quaternion.h │ ├── math_vector.cpp │ ├── math_vector.h │ ├── q_parse.cpp │ ├── q_shared.cpp │ ├── q_shared.h │ ├── splines.cpp │ ├── splines.h │ ├── splines.vcxproj │ ├── splines.vcxproj.filters │ ├── util_list.h │ ├── util_str.cpp │ └── util_str.h ├── stdint.msvc.h ├── str.h ├── synapse.h └── synapse │ ├── doc │ ├── design.txt │ ├── runtime.txt │ └── unload.txt │ ├── synapse.cpp │ ├── synapse.vcxproj │ └── synapse.vcxproj.filters ├── makeversion.py ├── memcheck-amd64-openbsd.core ├── plugins ├── eclassfgd │ ├── fgd.def │ ├── fgd.vcxproj │ ├── fgd.vcxproj.filters │ ├── plugin.cpp │ └── plugin.h ├── entity │ ├── eclassmodel.cpp │ ├── entity.cpp │ ├── entity.def │ ├── entity.h │ ├── entity.vcxproj │ ├── entity.vcxproj.filters │ ├── entity_entitymodel.cpp │ ├── entity_entitymodel.h │ ├── light.cpp │ ├── light.h │ ├── miscmodel.cpp │ ├── plugin.cpp │ └── plugin.h ├── image │ ├── bmp.cpp │ ├── bmp.h │ ├── image.cpp │ ├── image.def │ ├── image.h │ ├── image.vcxproj │ ├── image.vcxproj.filters │ ├── jpeg.cpp │ ├── lbmlib.cpp │ └── lbmlib.h ├── imagehl │ ├── imagehl.cpp │ ├── imagehl.def │ ├── imagehl.h │ ├── imagehl.txt │ ├── imagehl.vcxproj │ ├── imagehl.vcxproj.filters │ ├── lbmlib.cpp │ └── lbmlib.h ├── imagem8 │ ├── imagem8.cpp │ ├── imagem8.def │ ├── imagem8.h │ ├── imagem8.vcxproj │ ├── imagem8.vcxproj.filters │ ├── m32.cpp │ ├── m32.h │ ├── m8.cpp │ └── m8.h ├── imagepng │ ├── imagepng.def │ ├── imagepng.vcxproj │ ├── imagepng.vcxproj.filters │ ├── plugin.cpp │ └── plugin.h ├── imagewal │ ├── imagewal.cpp │ ├── imagewal.def │ ├── imagewal.h │ ├── imagewal.vcxproj │ ├── imagewal.vcxproj.filters │ ├── q2_palette.h │ ├── wal.cpp │ └── wal.h ├── map │ ├── map.def │ ├── map.vcxproj │ ├── map.vcxproj.filters │ ├── parse.cpp │ ├── plugin.cpp │ ├── plugin.h │ └── write.cpp ├── mapxml │ ├── mapxml.def │ ├── mapxml.vcxproj │ ├── mapxml.vcxproj.filters │ ├── plugin.cpp │ ├── plugin.h │ ├── xmlparse.cpp │ └── xmlwrite.cpp ├── model │ ├── cpicomodel.cpp │ ├── cpicomodel.h │ ├── cpicosurface.cpp │ ├── cpicosurface.h │ ├── miscmodel.cpp │ ├── model.cpp │ ├── model.def │ ├── model.vcxproj │ ├── model.vcxproj.filters │ ├── plugin.cpp │ ├── plugin.h │ ├── remap.cpp │ └── surface.h ├── sample │ ├── plugin.cpp │ ├── plugin.h │ ├── sample.def │ └── sample.vcproj.out-of-date ├── shaders │ ├── plugin.cpp │ ├── plugin.h │ ├── shaders.cpp │ ├── shaders.def │ ├── shaders.h │ ├── shaders.proj │ ├── shaders.vcxproj │ ├── shaders.vcxproj.filters │ └── shadershl.def ├── spritemodel │ ├── plugin.cpp │ ├── plugin.h │ ├── spritemodel.cpp │ ├── spritemodel.def │ ├── spritemodel.h │ ├── spritemodel.vcxproj │ └── spritemodel.vcxproj.filters ├── surface │ ├── surface.def │ ├── surface.vcxproj │ ├── surface.vcxproj.filters │ ├── surfacedialog.cpp │ ├── surfacedialog.h │ ├── surfdlg_plugin.cpp │ └── surfdlg_plugin.h ├── surface_idtech2 │ ├── surface_idtech2.def │ ├── surface_idtech2.vcxproj │ ├── surface_idtech2.vcxproj.filters │ ├── surfacedialog.cpp │ ├── surfacedialog.h │ ├── surfaceflags.cpp │ ├── surfaceflags.h │ ├── surfdlg_plugin.cpp │ └── surfdlg_plugin.h ├── textool │ ├── 2DView.cpp │ ├── 2DView.h │ ├── ControlPointsManager.cpp │ ├── ControlPointsManager.h │ ├── Doc │ │ ├── Image2.jpg │ │ └── TexTool.html │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TexTool.cpp │ ├── TexTool.rc │ ├── changelog.txt │ ├── resource.h │ ├── textool.def │ ├── textool.vcxproj │ └── textool.vcxproj.filters ├── vfspak │ ├── vfs.cpp │ ├── vfs.h │ ├── vfspak.cpp │ ├── vfspak.def │ ├── vfspak.h │ ├── vfspak.vcxproj │ └── vfspak.vcxproj.filters ├── vfspk3 │ ├── unzip-vfspk3.h │ ├── unzip.cpp │ ├── vfs.cpp │ ├── vfs.h │ ├── vfspk3.cpp │ ├── vfspk3.def │ ├── vfspk3.h │ ├── vfspk3.proj │ ├── vfspk3.vcxproj │ └── vfspk3.vcxproj.filters └── vfswad │ ├── unwad.cpp │ ├── unwad.h │ ├── vfs.cpp │ ├── vfs.h │ ├── vfswad.cpp │ ├── vfswad.def │ ├── vfswad.h │ ├── vfswad.txt │ ├── vfswad.vcxproj │ └── vfswad.vcxproj.filters ├── po └── de.po ├── prepare_archive.py ├── radiant.bin.core ├── radiant.pot ├── radiant.sln ├── radiant ├── Makefile.mac ├── bp_dlg.cpp ├── brush.cpp ├── brush.h ├── brush_primit.cpp ├── brushscript.cpp ├── camera.h ├── camwindow.cpp ├── camwindow.h ├── csg.cpp ├── dialog.cpp ├── dialog.h ├── dialoginfo.cpp ├── drag.cpp ├── eclass.cpp ├── eclass_def.cpp ├── eclass_def.h ├── error.cpp ├── feedback.cpp ├── feedback.h ├── file.cpp ├── file.h ├── filters.cpp ├── filters.h ├── findtexturedialog.cpp ├── findtexturedialog.h ├── glinterface.cpp ├── glwidget.cpp ├── glwidget.h ├── glwindow.cpp ├── glwindow.h ├── groupdialog.cpp ├── groupdialog.h ├── gtkdlgs.cpp ├── gtkmisc.cpp ├── gtkmisc.h ├── main.cpp ├── mainframe.cpp ├── mainframe.h ├── map.cpp ├── map.h ├── missing.cpp ├── parse.cpp ├── parse.h ├── patchdialog.cpp ├── patchdialog.h ├── plugin.h ├── pluginentities.cpp ├── pluginmanager.cpp ├── pluginmanager.h ├── pmesh.cpp ├── points.cpp ├── points.h ├── preferences.cpp ├── preferences.h ├── profile.cpp ├── qe3.cpp ├── qe3.h ├── qedefs.h ├── qfiles.h ├── qgl.c ├── qgl.h ├── qgl_ext.cpp ├── queuedraw.cpp ├── radiant.ico ├── radiant.rc ├── radiant.vcxproj ├── radiant.vcxproj.filters ├── resource.h ├── select.cpp ├── select.h ├── selectedface.cpp ├── stdafx.cpp ├── stdafx.h ├── surfacedialog.cpp ├── surfacedialog.h ├── surfaceplugin.cpp ├── surfaceplugin.h ├── targetname.cpp ├── texmanip.cpp ├── texmanip.h ├── textures.h ├── texwindow.cpp ├── texwindow.h ├── ui.cpp ├── ui.h ├── undo.cpp ├── undo.h ├── vertsel.cpp ├── watchbsp.cpp ├── watchbsp.h ├── winding.cpp ├── winding.h ├── xmlstuff.h ├── xywindow.cpp ├── xywindow.h ├── z.cpp ├── z.h ├── zwindow.cpp └── zwindow.h ├── regression_tests └── q3map2 │ ├── base_winding │ ├── README.txt │ ├── base_winding_logging.patch │ ├── maps │ │ └── base_winding.map │ └── textures │ │ └── radiant_regression_tests │ │ └── tile.tga │ ├── coarse_snap_normal │ ├── README.txt │ ├── maps │ │ └── coarse_snap_normal.map │ └── textures │ │ └── radiant_regression_tests │ │ ├── green.tga │ │ ├── red.tga │ │ └── tile.tga │ ├── decal_misalignment │ ├── README.txt │ ├── maps │ │ └── decal_misalignment.map │ ├── scripts │ │ └── radiant_regression_tests.shader │ └── textures │ │ └── radiant_regression_tests │ │ ├── bigtile.tga │ │ ├── glass.tga │ │ ├── qer_glass.tga │ │ └── tile_trans.tga │ ├── degenerate_winding │ ├── README.txt │ ├── maps │ │ └── degenerate_winding.map │ └── textures │ │ └── radiant_regression_tests │ │ ├── green.tga │ │ ├── red.tga │ │ └── tile.tga │ ├── degenerate_winding2 │ ├── README.txt │ ├── maps │ │ └── degenerate_winding2.map │ └── textures │ │ └── radiant_regression_tests │ │ ├── blue.tga │ │ ├── green.tga │ │ ├── red.tga │ │ └── tile.tga │ ├── degenerate_winding3 │ ├── README.txt │ ├── maps │ │ └── degenerate_winding3.map │ └── textures │ │ └── radiant_regression_tests │ │ ├── blue.tga │ │ ├── green.tga │ │ ├── red.tga │ │ └── tile.tga │ ├── disappearing_sliver │ ├── README.txt │ ├── maps │ │ └── disappearing_sliver.map │ ├── textures │ │ └── radiant_regression_tests │ │ │ └── tile.tga │ └── winding_logging.patch │ ├── disappearing_sliver2 │ ├── README.txt │ ├── maps │ │ └── disappearing_sliver2.map │ └── textures │ │ └── radiant_regression_tests │ │ └── tile.tga │ ├── disappearing_sliver3 │ ├── NOTES.txt │ ├── README.txt │ ├── maps │ │ └── disappearing_sliver3.map │ └── textures │ │ └── radiant_regression_tests │ │ └── tile.tga │ ├── duplicate_plane │ ├── README.txt │ ├── maps │ │ └── duplicate_plane.map │ └── textures │ │ └── radiant_regression_tests │ │ └── tile.tga │ ├── model_clipping_45_degrees │ ├── README.txt │ ├── maps │ │ └── model_clipping_45_degrees.map │ ├── models │ │ └── mapobjects │ │ │ └── wedges │ │ │ ├── wedge_45.ase │ │ │ ├── wedge_shallow.ase │ │ │ └── wedge_steep.ase │ ├── scripts │ │ └── radiant_regression_tests.shader │ └── textures │ │ └── radiant_regression_tests │ │ ├── bigtile.tga │ │ └── tile_model.tga │ ├── patch_seam │ ├── README.txt │ ├── maps │ │ └── patch_seam.map │ └── textures │ │ └── radiant_regression_tests │ │ ├── green.tga │ │ └── tile.tga │ ├── piercing_triangle │ ├── README.txt │ ├── maps │ │ └── piercing_triangle.map │ └── textures │ │ └── radiant_regression_tests │ │ └── tile.tga │ ├── plane_aliasing │ ├── README.txt │ ├── maps │ │ └── plane_aliasing.map │ └── textures │ │ └── radiant_regression_tests │ │ ├── blue.tga │ │ ├── green.tga │ │ ├── red.tga │ │ └── tile.tga │ ├── segmentation_fault │ ├── README.txt │ ├── maps │ │ └── segmentation_fault.map │ └── textures │ │ └── radiant_regression_tests │ │ └── tile.tga │ ├── snap_plane │ ├── README.txt │ ├── maps │ │ └── snap_plane.map │ └── textures │ │ └── radiant_regression_tests │ │ ├── green.tga │ │ ├── red.tga │ │ └── tile.tga │ └── sparkly_seam │ ├── README.txt │ ├── maps │ └── sparkly_seam.map │ └── textures │ └── radiant_regression_tests │ └── tile.tga ├── tools ├── .gitignore ├── quake2 │ ├── common │ │ ├── bspfile.c │ │ ├── bspfile.h │ │ ├── cmdlib.c │ │ ├── cmdlib.h │ │ ├── inout.c │ │ ├── inout.h │ │ ├── l3dslib.c │ │ ├── l3dslib.h │ │ ├── lbmlib.c │ │ ├── lbmlib.h │ │ ├── mathlib.c │ │ ├── mathlib.h │ │ ├── path_init.c │ │ ├── polylib.c │ │ ├── polylib.h │ │ ├── q2_threads.h │ │ ├── qfiles.h │ │ ├── scriplib.c │ │ ├── scriplib.h │ │ ├── threads.c │ │ ├── trilib.c │ │ └── trilib.h │ ├── extra │ │ ├── COPYING.txt │ │ ├── Unpack │ │ │ ├── Unpack.dsp │ │ │ ├── Unpack.dsw │ │ │ └── Unpack.java │ │ ├── bsp │ │ │ ├── bsp.mak │ │ │ ├── bspinfo3 │ │ │ │ ├── bspinfo3.c │ │ │ │ └── makefile │ │ │ ├── qbsp3 │ │ │ │ ├── brushbsp.c │ │ │ │ ├── csg.c │ │ │ │ ├── faces.c │ │ │ │ ├── gldraw.c │ │ │ │ ├── glfile.c │ │ │ │ ├── leakfile.c │ │ │ │ ├── makefile │ │ │ │ ├── map.c │ │ │ │ ├── nodraw.c │ │ │ │ ├── portals.c │ │ │ │ ├── prtfile.c │ │ │ │ ├── qbsp.h │ │ │ │ ├── qbsp3.c │ │ │ │ ├── textures.c │ │ │ │ ├── tree.c │ │ │ │ └── writebsp.c │ │ │ ├── qrad3 │ │ │ │ ├── lightmap.c │ │ │ │ ├── makefile │ │ │ │ ├── patches.c │ │ │ │ ├── qrad.h │ │ │ │ ├── qrad3.c │ │ │ │ └── trace.c │ │ │ └── qvis3 │ │ │ │ ├── flow.c │ │ │ │ ├── makefile │ │ │ │ ├── qvis3.c │ │ │ │ └── vis.h │ │ ├── common │ │ │ ├── bspfile.c │ │ │ ├── bspfile.h │ │ │ ├── cmdlib.c │ │ │ ├── cmdlib.h │ │ │ ├── l3dslib.c │ │ │ ├── l3dslib.h │ │ │ ├── lbmlib.c │ │ │ ├── lbmlib.h │ │ │ ├── mathlib.c │ │ │ ├── mathlib.h │ │ │ ├── mdfour.c │ │ │ ├── mdfour.h │ │ │ ├── polylib.c │ │ │ ├── polylib.h │ │ │ ├── qfiles.h │ │ │ ├── scriplib.c │ │ │ ├── scriplib.h │ │ │ ├── threads.c │ │ │ ├── threads.h │ │ │ ├── trilib.c │ │ │ └── trilib.h │ │ ├── qdata │ │ │ ├── anorms.h │ │ │ ├── images.c │ │ │ ├── makefile │ │ │ ├── models.c │ │ │ ├── qdata.c │ │ │ ├── qdata.dsp │ │ │ ├── qdata.dsw │ │ │ ├── qdata.h │ │ │ ├── qdata.mak │ │ │ ├── sprites.c │ │ │ ├── tables.c │ │ │ └── video.c │ │ ├── qe4 │ │ │ ├── brush.c │ │ │ ├── brush.h │ │ │ ├── bspfile.h │ │ │ ├── camera.c │ │ │ ├── camera.h │ │ │ ├── cmdlib.c │ │ │ ├── cmdlib.h │ │ │ ├── csg.c │ │ │ ├── drag.c │ │ │ ├── eclass.c │ │ │ ├── entity.c │ │ │ ├── entity.h │ │ │ ├── entityw.h │ │ │ ├── glingr.h │ │ │ ├── icon1.ico │ │ │ ├── lbmlib.c │ │ │ ├── lbmlib.h │ │ │ ├── makefile │ │ │ ├── map.c │ │ │ ├── map.h │ │ │ ├── mathlib.c │ │ │ ├── mathlib.h │ │ │ ├── mru.c │ │ │ ├── mru.h │ │ │ ├── parse.c │ │ │ ├── parse.h │ │ │ ├── points.c │ │ │ ├── q.bmp │ │ │ ├── qe3.c │ │ │ ├── qe3.h │ │ │ ├── qe4.mak │ │ │ ├── qedefs.h │ │ │ ├── qfiles.h │ │ │ ├── resource.h │ │ │ ├── select.c │ │ │ ├── select.h │ │ │ ├── textures.c │ │ │ ├── textures.h │ │ │ ├── toolbar1.bmp │ │ │ ├── vertsel.c │ │ │ ├── view.h │ │ │ ├── win_cam.c │ │ │ ├── win_dlg.c │ │ │ ├── win_ent.c │ │ │ ├── win_main.c │ │ │ ├── win_qe3.aps │ │ │ ├── win_qe3.c │ │ │ ├── win_qe3.rc │ │ │ ├── win_xy.c │ │ │ ├── win_z.c │ │ │ ├── xy.c │ │ │ ├── xy.h │ │ │ ├── z.c │ │ │ └── z.h │ │ └── texpaint │ │ │ ├── docs.txt │ │ │ ├── resource.h │ │ │ ├── texmake.aps │ │ │ ├── texmake.rc │ │ │ ├── texpaint.c │ │ │ ├── texpaint.h │ │ │ ├── texpaint.mak │ │ │ ├── win_cam.c │ │ │ ├── win_main.c │ │ │ ├── win_pal.c │ │ │ └── win_skin.c │ ├── q2map │ │ ├── brushbsp.c │ │ ├── csg.c │ │ ├── faces.c │ │ ├── flow.c │ │ ├── gldraw.c │ │ ├── glfile.c │ │ ├── leakfile.c │ │ ├── lightmap.c │ │ ├── main.c │ │ ├── map.c │ │ ├── nodraw.c │ │ ├── patches.c │ │ ├── portals.c │ │ ├── prtfile.c │ │ ├── q2map.h │ │ ├── q2map.vcproj.out-of-date │ │ ├── qbsp.c │ │ ├── qbsp.h │ │ ├── qrad.c │ │ ├── qrad.h │ │ ├── qvis.c │ │ ├── qvis.h │ │ ├── textures.c │ │ ├── trace.c │ │ ├── tree.c │ │ └── writebsp.c │ ├── qdata │ │ ├── anorms.h │ │ ├── images.c │ │ ├── makefile │ │ ├── models.c │ │ ├── qdata.c │ │ ├── qdata.h │ │ ├── qdata3.vcproj.out-of-date │ │ ├── sprites.c │ │ ├── tables.c │ │ └── video.c │ └── qdata_heretic2 │ │ ├── adpcm.h │ │ ├── animcomp.c │ │ ├── animcomp.h │ │ ├── anorms.h │ │ ├── book.c │ │ ├── common │ │ ├── bspfile.c │ │ ├── bspfile.h │ │ ├── cmdlib.c │ │ ├── cmdlib.h │ │ ├── her2_threads.h │ │ ├── inout.c │ │ ├── inout.h │ │ ├── l3dslib.c │ │ ├── l3dslib.h │ │ ├── lbmlib.c │ │ ├── lbmlib.h │ │ ├── mathlib.c │ │ ├── mathlib.h │ │ ├── md4.c │ │ ├── path_init.c │ │ ├── polylib.c │ │ ├── polylib.h │ │ ├── qfiles.c │ │ ├── qfiles.h │ │ ├── scriplib.c │ │ ├── scriplib.h │ │ ├── threads.c │ │ ├── token.c │ │ ├── token.h │ │ ├── trilib.c │ │ └── trilib.h │ │ ├── fmodels.c │ │ ├── icon1.ico │ │ ├── images.c │ │ ├── jointed.c │ │ ├── jointed.h │ │ ├── joints.h │ │ ├── models.c │ │ ├── pics.c │ │ ├── qcommon │ │ ├── angles.h │ │ ├── arrayedlist.h │ │ ├── flex.h │ │ ├── fmodel.h │ │ ├── h2common.h │ │ ├── placement.h │ │ ├── q_typedef.h │ │ ├── qfiles.h │ │ ├── reference.c │ │ ├── reference.h │ │ ├── resourcemanager.c │ │ ├── resourcemanager.h │ │ ├── skeletons.c │ │ └── skeletons.h │ │ ├── qd_fmodel.h │ │ ├── qd_skeletons.c │ │ ├── qd_skeletons.h │ │ ├── qdata.c │ │ ├── qdata.h │ │ ├── qdata3_heretic2.vcproj.out-of-date │ │ ├── resource.h │ │ ├── script1.aps │ │ ├── script1.rc │ │ ├── sprites.c │ │ ├── svdcmp.c │ │ ├── tables.c │ │ ├── tmix.c │ │ └── video.c ├── quake3 │ ├── common │ │ ├── aselib.c │ │ ├── aselib.h │ │ ├── bspfile.c │ │ ├── bspfile.h │ │ ├── cmdlib.c │ │ ├── cmdlib.h │ │ ├── imagelib.c │ │ ├── imagelib.h │ │ ├── inout.c │ │ ├── inout.h │ │ ├── jpeg.c │ │ ├── l3dslib.c │ │ ├── l3dslib.h │ │ ├── mutex.c │ │ ├── mutex.h │ │ ├── polylib.c │ │ ├── polylib.h │ │ ├── polyset.h │ │ ├── qfiles.h │ │ ├── qthreads.h │ │ ├── quake3-common.vcxproj │ │ ├── quake3-common.vcxproj.filters │ │ ├── scriplib.c │ │ ├── scriplib.h │ │ ├── surfaceflags.h │ │ ├── threads.c │ │ ├── trilib.c │ │ ├── trilib.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── vfs.c │ │ └── vfs.h │ ├── q3data │ │ ├── 3dslib.c │ │ ├── 3dslib.h │ │ ├── compress.c │ │ ├── images.c │ │ ├── md3lib.c │ │ ├── md3lib.h │ │ ├── models.c │ │ ├── oldstuff.c │ │ ├── p3dlib.c │ │ ├── p3dlib.h │ │ ├── polyset.c │ │ ├── q3data.c │ │ ├── q3data.h │ │ ├── q3data.vcxproj │ │ ├── stripper.c │ │ └── video.c │ └── q3map2 │ │ ├── brush.c │ │ ├── brush_primit.c │ │ ├── bsp.c │ │ ├── bsp_analyze.c │ │ ├── bsp_info.c │ │ ├── bsp_scale.c │ │ ├── bspfile_abstract.c │ │ ├── bspfile_ibsp.c │ │ ├── bspfile_rbsp.c │ │ ├── changelog.q3map1 │ │ ├── changelog.q3map2.txt │ │ ├── convert_ase.c │ │ ├── convert_bsp.c │ │ ├── convert_map.c │ │ ├── decals.c │ │ ├── exportents.c │ │ ├── facebsp.c │ │ ├── fixaas.c │ │ ├── fog.c │ │ ├── game__null.h │ │ ├── game_ef.h │ │ ├── game_etut.h │ │ ├── game_ja.h │ │ ├── game_jk2.h │ │ ├── game_nexuiz.h │ │ ├── game_qfusion.h │ │ ├── game_quake3.h │ │ ├── game_quakelive.h │ │ ├── game_reaction.h │ │ ├── game_sof2.h │ │ ├── game_t.h │ │ ├── game_tenebrae.h │ │ ├── game_tremulous.h │ │ ├── game_unvanquished.h │ │ ├── game_wolf.h │ │ ├── game_wolfet.h │ │ ├── image.c │ │ ├── leakfile.c │ │ ├── light.c │ │ ├── light_bounce.c │ │ ├── light_shadows.c │ │ ├── light_trace.c │ │ ├── light_ydnar.c │ │ ├── lightmaps.c │ │ ├── lightmaps_ydnar.c │ │ ├── listen.pl │ │ ├── main.c │ │ ├── map.c │ │ ├── mesh.c │ │ ├── minimap.c │ │ ├── model.c │ │ ├── patch.c │ │ ├── path_init.c │ │ ├── portals.c │ │ ├── prtfile.c │ │ ├── q3map2.h │ │ ├── q3map2.ico │ │ ├── q3map2.rc │ │ ├── q3map2.vcxproj │ │ ├── q3map2.vcxproj.filters │ │ ├── shaders.c │ │ ├── surface.c │ │ ├── surface_extra.c │ │ ├── surface_foliage.c │ │ ├── surface_fur.c │ │ ├── surface_meta.c │ │ ├── tjunction.c │ │ ├── tree.c │ │ ├── vis.c │ │ ├── visflow.c │ │ └── writebsp.c └── urt │ └── tools │ └── quake3 │ └── q3map2 │ ├── brush.c │ ├── brush_primit.c │ ├── bsp.c │ ├── bspfile_abstract.c │ ├── bspfile_ibsp.c │ ├── bspfile_rbsp.c │ ├── changelog.q3map1 │ ├── changelog.q3map2.txt │ ├── convert_ase.c │ ├── convert_map.c │ ├── decals.c │ ├── exportents.c │ ├── facebsp.c │ ├── fog.c │ ├── game_ef.h │ ├── game_etut.h │ ├── game_ja.h │ ├── game_jk2.h │ ├── game_quake3.h │ ├── game_sof2.h │ ├── game_t.h │ ├── game_tenebrae.h │ ├── game_wolf.h │ ├── game_wolfet.h │ ├── image.c │ ├── leakfile.c │ ├── light.c │ ├── light_bounce.c │ ├── light_shadows.c │ ├── light_trace.c │ ├── light_ydnar.c │ ├── lightmaps.c │ ├── lightmaps_ydnar.c │ ├── listen.pl │ ├── main.c │ ├── map.c │ ├── mesh.c │ ├── model.c │ ├── patch.c │ ├── path_init.c │ ├── portals.c │ ├── prtfile.c │ ├── q3map2.h │ ├── q3map2.ico │ ├── q3map2.rc │ ├── q3map2_urt.vcxproj │ ├── q3map2_urt.vcxproj.filters │ ├── shaders.c │ ├── surface.c │ ├── surface_extra.c │ ├── surface_foliage.c │ ├── surface_fur.c │ ├── surface_meta.c │ ├── tjunction.c │ ├── tree.c │ ├── vis.c │ ├── visflow.c │ └── writebsp.c ├── uncrustify.cfg └── utils.py /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/.cproject -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/.pydevproject -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/BSD -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/GPL -------------------------------------------------------------------------------- /LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/LGPL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/README.md -------------------------------------------------------------------------------- /SConscript.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/SConscript.lib -------------------------------------------------------------------------------- /SConscript.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/SConscript.module -------------------------------------------------------------------------------- /SConscript.q3data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/SConscript.q3data -------------------------------------------------------------------------------- /SConscript.q3map2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/SConscript.q3map2 -------------------------------------------------------------------------------- /SConscript.q3map2.urt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/SConscript.q3map2.urt -------------------------------------------------------------------------------- /SConscript.radiant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/SConscript.radiant -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/SConstruct -------------------------------------------------------------------------------- /TRANSLATING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/TRANSLATING -------------------------------------------------------------------------------- /apple/GtkRadiant.app/Contents/Resources/etc/gtk-2.0/gtkrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apple/GtkRadiant.app/Contents/Resources/etc/pango/pangorc: -------------------------------------------------------------------------------- 1 | [Pango] -------------------------------------------------------------------------------- /apple/GtkRadiant.app/Contents/Resources/lib/.turd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apple/GtkRadiant.app/Contents/Resources/share/gtk-2.0/icons/.turd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apple/GtkRadiant.app/Contents/Resources/share/gtk-2.0/themes/.turd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/apple/Makefile -------------------------------------------------------------------------------- /apple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/apple/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/config.py -------------------------------------------------------------------------------- /contrib/bkgrnd2d/bkgrnd2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bkgrnd2d/bkgrnd2d.cpp -------------------------------------------------------------------------------- /contrib/bkgrnd2d/bkgrnd2d.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bkgrnd2d/bkgrnd2d.def -------------------------------------------------------------------------------- /contrib/bkgrnd2d/bkgrnd2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bkgrnd2d/bkgrnd2d.h -------------------------------------------------------------------------------- /contrib/bkgrnd2d/bkgrnd2d.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bkgrnd2d/bkgrnd2d.vcxproj -------------------------------------------------------------------------------- /contrib/bkgrnd2d/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bkgrnd2d/dialog.cpp -------------------------------------------------------------------------------- /contrib/bkgrnd2d/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bkgrnd2d/dialog.h -------------------------------------------------------------------------------- /contrib/bkgrnd2d/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bkgrnd2d/plugin.cpp -------------------------------------------------------------------------------- /contrib/bkgrnd2d/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bkgrnd2d/plugin.h -------------------------------------------------------------------------------- /contrib/bobtoolz/CPortals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/CPortals.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DBobView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DBobView.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DBobView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DBobView.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DBrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DBrush.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DBrush.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DEPair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DEPair.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DEPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DEPair.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DEntity.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DEntity.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DListener.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DListener.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DMap.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DMap.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DPatch.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DPatch.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DPlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DPlane.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DPlane.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DPoint.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DPoint.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DShape.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DShape.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DTrainDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DTrainDrawer.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DTrainDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DTrainDrawer.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DTreePlanter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DTreePlanter.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DTreePlanter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DTreePlanter.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DVisDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DVisDrawer.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DVisDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DVisDrawer.h -------------------------------------------------------------------------------- /contrib/bobtoolz/DWinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DWinding.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/DWinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/DWinding.h -------------------------------------------------------------------------------- /contrib/bobtoolz/ScriptParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/ScriptParser.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/ScriptParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/ScriptParser.h -------------------------------------------------------------------------------- /contrib/bobtoolz/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/StdAfx.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/StdAfx.h -------------------------------------------------------------------------------- /contrib/bobtoolz/bobToolz-GTK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bobToolz-GTK.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/bobToolz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bobToolz.h -------------------------------------------------------------------------------- /contrib/bobtoolz/bobToolz.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bobToolz.rc -------------------------------------------------------------------------------- /contrib/bobtoolz/bobtoolz-gtk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bobtoolz-gtk.rc -------------------------------------------------------------------------------- /contrib/bobtoolz/bobtoolz.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bobtoolz.def -------------------------------------------------------------------------------- /contrib/bobtoolz/bobtoolz.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bobtoolz.vcxproj -------------------------------------------------------------------------------- /contrib/bobtoolz/bsploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bsploader.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/bsploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bsploader.h -------------------------------------------------------------------------------- /contrib/bobtoolz/bt/bt-el1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bt/bt-el1.txt -------------------------------------------------------------------------------- /contrib/bobtoolz/bt/bt-el2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/bobtoolz/bt/ctf-blue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bt/ctf-blue.txt -------------------------------------------------------------------------------- /contrib/bobtoolz/bt/ctf-red.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bt/ctf-red.txt -------------------------------------------------------------------------------- /contrib/bobtoolz/bt/door-tex-trim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bt/door-tex-trim.txt -------------------------------------------------------------------------------- /contrib/bobtoolz/bt/door-tex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bt/door-tex.txt -------------------------------------------------------------------------------- /contrib/bobtoolz/bt/tp_ent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/bt/tp_ent.txt -------------------------------------------------------------------------------- /contrib/bobtoolz/cportals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/cportals.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/ctfToolz-GTK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/ctfToolz-GTK.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/ctfresource_gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/ctfresource_gtk.h -------------------------------------------------------------------------------- /contrib/bobtoolz/ctfresource_gtk.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/ctfresource_gtk.rc -------------------------------------------------------------------------------- /contrib/bobtoolz/ctftoolz.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/ctftoolz.def -------------------------------------------------------------------------------- /contrib/bobtoolz/dialogs/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/dialogs/AboutDialog.h -------------------------------------------------------------------------------- /contrib/bobtoolz/dialogs/DoorDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/dialogs/DoorDialog.h -------------------------------------------------------------------------------- /contrib/bobtoolz/dialogs/StairDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/dialogs/StairDialog.h -------------------------------------------------------------------------------- /contrib/bobtoolz/dialogs/dialogs-gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/dialogs/dialogs-gtk.h -------------------------------------------------------------------------------- /contrib/bobtoolz/funchandlers-GTK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/funchandlers-GTK.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/funchandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/funchandlers.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/funchandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/funchandlers.h -------------------------------------------------------------------------------- /contrib/bobtoolz/lists.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/lists.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/lists.h -------------------------------------------------------------------------------- /contrib/bobtoolz/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/misc.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/misc.h -------------------------------------------------------------------------------- /contrib/bobtoolz/res/plugin.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/res/plugin.rc2 -------------------------------------------------------------------------------- /contrib/bobtoolz/resource-gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/resource-gtk.h -------------------------------------------------------------------------------- /contrib/bobtoolz/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/resource.h -------------------------------------------------------------------------------- /contrib/bobtoolz/shapes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/shapes.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/shapes.h -------------------------------------------------------------------------------- /contrib/bobtoolz/txt/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/txt/changelog.txt -------------------------------------------------------------------------------- /contrib/bobtoolz/txt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/txt/readme.txt -------------------------------------------------------------------------------- /contrib/bobtoolz/visfind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/visfind.cpp -------------------------------------------------------------------------------- /contrib/bobtoolz/visfind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/bobtoolz/visfind.h -------------------------------------------------------------------------------- /contrib/camera/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/camera.cpp -------------------------------------------------------------------------------- /contrib/camera/camera.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/camera.def -------------------------------------------------------------------------------- /contrib/camera/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/camera.h -------------------------------------------------------------------------------- /contrib/camera/camera.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/camera.vcxproj -------------------------------------------------------------------------------- /contrib/camera/camera.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/camera.vcxproj.filters -------------------------------------------------------------------------------- /contrib/camera/dialogs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/dialogs.cpp -------------------------------------------------------------------------------- /contrib/camera/dialogs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/dialogs.h -------------------------------------------------------------------------------- /contrib/camera/dialogs_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/dialogs_common.cpp -------------------------------------------------------------------------------- /contrib/camera/funchandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/funchandlers.cpp -------------------------------------------------------------------------------- /contrib/camera/funchandlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/funchandlers.h -------------------------------------------------------------------------------- /contrib/camera/listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/listener.cpp -------------------------------------------------------------------------------- /contrib/camera/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/listener.h -------------------------------------------------------------------------------- /contrib/camera/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/misc.cpp -------------------------------------------------------------------------------- /contrib/camera/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/misc.h -------------------------------------------------------------------------------- /contrib/camera/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/renderer.cpp -------------------------------------------------------------------------------- /contrib/camera/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/camera/renderer.h -------------------------------------------------------------------------------- /contrib/gtkgensurf/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/CHANGES -------------------------------------------------------------------------------- /contrib/gtkgensurf/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/bitmap.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/dec.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/face.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/font.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/gendlgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/gendlgs.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/gendlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/gendlgs.h -------------------------------------------------------------------------------- /contrib/gtkgensurf/genmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/genmap.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/gensurf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/gensurf.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/gensurf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/gensurf.h -------------------------------------------------------------------------------- /contrib/gtkgensurf/gtkgensurf.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/gtkgensurf.def -------------------------------------------------------------------------------- /contrib/gtkgensurf/gtkgensurf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/gtkgensurf.vcxproj -------------------------------------------------------------------------------- /contrib/gtkgensurf/heretic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/heretic.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/plugin.cpp -------------------------------------------------------------------------------- /contrib/gtkgensurf/triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/triangle.c -------------------------------------------------------------------------------- /contrib/gtkgensurf/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/triangle.h -------------------------------------------------------------------------------- /contrib/gtkgensurf/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/gtkgensurf/view.cpp -------------------------------------------------------------------------------- /contrib/hydratoolz/hydratoolz.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/hydratoolz/hydratoolz.def -------------------------------------------------------------------------------- /contrib/hydratoolz/hydratoolz.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/hydratoolz/hydratoolz.vcxproj -------------------------------------------------------------------------------- /contrib/hydratoolz/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/hydratoolz/plugin.cpp -------------------------------------------------------------------------------- /contrib/hydratoolz/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/hydratoolz/plugin.h -------------------------------------------------------------------------------- /contrib/prtview/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/AboutDialog.cpp -------------------------------------------------------------------------------- /contrib/prtview/ConfigDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/ConfigDialog.cpp -------------------------------------------------------------------------------- /contrib/prtview/LoadPortalFileDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/LoadPortalFileDialog.h -------------------------------------------------------------------------------- /contrib/prtview/PrtView.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/PrtView.aps -------------------------------------------------------------------------------- /contrib/prtview/PrtView.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/PrtView.rc -------------------------------------------------------------------------------- /contrib/prtview/PrtView.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/PrtView.txt -------------------------------------------------------------------------------- /contrib/prtview/gtkdlgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/gtkdlgs.cpp -------------------------------------------------------------------------------- /contrib/prtview/gtkdlgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/gtkdlgs.h -------------------------------------------------------------------------------- /contrib/prtview/portals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/portals.cpp -------------------------------------------------------------------------------- /contrib/prtview/portals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/portals.h -------------------------------------------------------------------------------- /contrib/prtview/prtview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/prtview.cpp -------------------------------------------------------------------------------- /contrib/prtview/prtview.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/prtview.def -------------------------------------------------------------------------------- /contrib/prtview/prtview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/prtview.h -------------------------------------------------------------------------------- /contrib/prtview/prtview.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/prtview.vcxproj -------------------------------------------------------------------------------- /contrib/prtview/res/PrtView.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/res/PrtView.rc2 -------------------------------------------------------------------------------- /contrib/prtview/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/resource.h -------------------------------------------------------------------------------- /contrib/prtview/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/stdafx.cpp -------------------------------------------------------------------------------- /contrib/prtview/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/contrib/prtview/stdafx.h -------------------------------------------------------------------------------- /docs/manual/Q3Rad_Manual/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/docs/manual/Q3Rad_Manual/index.htm -------------------------------------------------------------------------------- /gtkradiant-flatpak.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/gtkradiant-flatpak.code-workspace -------------------------------------------------------------------------------- /include/aboutmsg.default: -------------------------------------------------------------------------------- 1 | Custom build by Average Joe 2 | -------------------------------------------------------------------------------- /include/aboutmsg.h: -------------------------------------------------------------------------------- 1 | // generated header, see makeversion.py 2 | #define RADIANT_ABOUTMSG "http://icculus.org/gtkradiant/" 3 | -------------------------------------------------------------------------------- /include/gtkr_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/gtkr_list.h -------------------------------------------------------------------------------- /include/gtkr_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/gtkr_vector.h -------------------------------------------------------------------------------- /include/ibrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/ibrush.h -------------------------------------------------------------------------------- /include/ibspfrontend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/ibspfrontend.h -------------------------------------------------------------------------------- /include/icamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/icamera.h -------------------------------------------------------------------------------- /include/idata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/idata.h -------------------------------------------------------------------------------- /include/idatastream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/idatastream.h -------------------------------------------------------------------------------- /include/ieclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/ieclass.h -------------------------------------------------------------------------------- /include/ientity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/ientity.h -------------------------------------------------------------------------------- /include/ifilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/ifilesystem.h -------------------------------------------------------------------------------- /include/ifilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/ifilters.h -------------------------------------------------------------------------------- /include/igl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/igl.h -------------------------------------------------------------------------------- /include/iimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/iimage.h -------------------------------------------------------------------------------- /include/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/imap.h -------------------------------------------------------------------------------- /include/imodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/imodel.h -------------------------------------------------------------------------------- /include/ipatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/ipatch.h -------------------------------------------------------------------------------- /include/iplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/iplugin.h -------------------------------------------------------------------------------- /include/irefcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/irefcount.h -------------------------------------------------------------------------------- /include/iscriplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/iscriplib.h -------------------------------------------------------------------------------- /include/iselectedface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/iselectedface.h -------------------------------------------------------------------------------- /include/ishaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/ishaders.h -------------------------------------------------------------------------------- /include/ishadersmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/ishadersmanager.h -------------------------------------------------------------------------------- /include/isurfaceplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/isurfaceplugin.h -------------------------------------------------------------------------------- /include/itoolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/itoolbar.h -------------------------------------------------------------------------------- /include/iui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/iui.h -------------------------------------------------------------------------------- /include/iui_gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/iui_gtk.h -------------------------------------------------------------------------------- /include/iundo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/iundo.h -------------------------------------------------------------------------------- /include/misc_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/misc_def.h -------------------------------------------------------------------------------- /include/qerplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/qerplugin.h -------------------------------------------------------------------------------- /include/qertypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/qertypes.h -------------------------------------------------------------------------------- /include/qsysprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/qsysprintf.h -------------------------------------------------------------------------------- /include/stl_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/stl_check.h -------------------------------------------------------------------------------- /include/stream_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/stream_version.h -------------------------------------------------------------------------------- /include/version.default: -------------------------------------------------------------------------------- 1 | 1.6.7 2 | -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/include/version.h -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install.py -------------------------------------------------------------------------------- /install/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/.gitignore -------------------------------------------------------------------------------- /install/bitmaps/brush_flipx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/brush_flipx.png -------------------------------------------------------------------------------- /install/bitmaps/brush_flipy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/brush_flipy.png -------------------------------------------------------------------------------- /install/bitmaps/brush_flipz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/brush_flipz.png -------------------------------------------------------------------------------- /install/bitmaps/brush_rotatex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/brush_rotatex.png -------------------------------------------------------------------------------- /install/bitmaps/brush_rotatey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/brush_rotatey.png -------------------------------------------------------------------------------- /install/bitmaps/brush_rotatez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/brush_rotatez.png -------------------------------------------------------------------------------- /install/bitmaps/cap_bevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/cap_bevel.png -------------------------------------------------------------------------------- /install/bitmaps/cap_endcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/cap_endcap.png -------------------------------------------------------------------------------- /install/bitmaps/cap_ibevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/cap_ibevel.png -------------------------------------------------------------------------------- /install/bitmaps/cap_iendcap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/cap_iendcap.png -------------------------------------------------------------------------------- /install/bitmaps/curve_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/curve_cap.png -------------------------------------------------------------------------------- /install/bitmaps/dontselectcurve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/dontselectcurve.png -------------------------------------------------------------------------------- /install/bitmaps/dontselectmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/dontselectmodel.png -------------------------------------------------------------------------------- /install/bitmaps/file_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/file_open.png -------------------------------------------------------------------------------- /install/bitmaps/file_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/file_save.png -------------------------------------------------------------------------------- /install/bitmaps/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/icon.png -------------------------------------------------------------------------------- /install/bitmaps/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/logo.png -------------------------------------------------------------------------------- /install/bitmaps/patch_bend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/patch_bend.png -------------------------------------------------------------------------------- /install/bitmaps/patch_drilldown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/patch_drilldown.png -------------------------------------------------------------------------------- /install/bitmaps/patch_insdel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/patch_insdel.png -------------------------------------------------------------------------------- /install/bitmaps/patch_weld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/patch_weld.png -------------------------------------------------------------------------------- /install/bitmaps/patch_wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/patch_wireframe.png -------------------------------------------------------------------------------- /install/bitmaps/popup_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/popup_selection.png -------------------------------------------------------------------------------- /install/bitmaps/scalelockx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/scalelockx.png -------------------------------------------------------------------------------- /install/bitmaps/scalelocky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/scalelocky.png -------------------------------------------------------------------------------- /install/bitmaps/scalelockz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/scalelockz.png -------------------------------------------------------------------------------- /install/bitmaps/select_mouserotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/select_mouserotate.png -------------------------------------------------------------------------------- /install/bitmaps/select_mousescale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/select_mousescale.png -------------------------------------------------------------------------------- /install/bitmaps/selection_csgmerge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/selection_csgmerge.png -------------------------------------------------------------------------------- /install/bitmaps/show_entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/show_entities.png -------------------------------------------------------------------------------- /install/bitmaps/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/splash.png -------------------------------------------------------------------------------- /install/bitmaps/textures_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/textures_popup.png -------------------------------------------------------------------------------- /install/bitmaps/toggle_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/toggle_detail.png -------------------------------------------------------------------------------- /install/bitmaps/toggle_struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/toggle_struct.png -------------------------------------------------------------------------------- /install/bitmaps/view_cameratoggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/view_cameratoggle.png -------------------------------------------------------------------------------- /install/bitmaps/view_cameraupdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/view_cameraupdate.png -------------------------------------------------------------------------------- /install/bitmaps/view_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/view_change.png -------------------------------------------------------------------------------- /install/bitmaps/view_clipper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/view_clipper.png -------------------------------------------------------------------------------- /install/bitmaps/view_cubicclipping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/view_cubicclipping.png -------------------------------------------------------------------------------- /install/bitmaps/view_entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/view_entity.png -------------------------------------------------------------------------------- /install/bitmaps/window1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/window1.png -------------------------------------------------------------------------------- /install/bitmaps/window2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/window2.png -------------------------------------------------------------------------------- /install/bitmaps/window3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/window3.png -------------------------------------------------------------------------------- /install/bitmaps/window4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/bitmaps/window4.png -------------------------------------------------------------------------------- /install/modules/bitmaps/picomodel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/modules/bitmaps/picomodel.bmp -------------------------------------------------------------------------------- /install/modules/bitmaps/sample.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/install/modules/bitmaps/sample.bmp -------------------------------------------------------------------------------- /libs/.gitignore: -------------------------------------------------------------------------------- 1 | x64 2 | -------------------------------------------------------------------------------- /libs/bytebool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/bytebool.h -------------------------------------------------------------------------------- /libs/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/cmdlib.h -------------------------------------------------------------------------------- /libs/cmdlib/cmdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/cmdlib/cmdlib.cpp -------------------------------------------------------------------------------- /libs/cmdlib/cmdlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/cmdlib/cmdlib.vcxproj -------------------------------------------------------------------------------- /libs/cmdlib/cmdlib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/cmdlib/cmdlib.vcxproj.filters -------------------------------------------------------------------------------- /libs/ddslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/ddslib.h -------------------------------------------------------------------------------- /libs/ddslib/ddslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/ddslib/ddslib.c -------------------------------------------------------------------------------- /libs/ddslib/ddslib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/ddslib/ddslib.vcxproj -------------------------------------------------------------------------------- /libs/ddslib/ddslib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/ddslib/ddslib.vcxproj.filters -------------------------------------------------------------------------------- /libs/igl_to_qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/igl_to_qgl.h -------------------------------------------------------------------------------- /libs/l_net/l_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/l_net/l_net.c -------------------------------------------------------------------------------- /libs/l_net/l_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/l_net/l_net.h -------------------------------------------------------------------------------- /libs/l_net/l_net.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/l_net/l_net.vcxproj -------------------------------------------------------------------------------- /libs/l_net/l_net.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/l_net/l_net.vcxproj.filters -------------------------------------------------------------------------------- /libs/l_net/l_net_berkeley.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/l_net/l_net_berkeley.c -------------------------------------------------------------------------------- /libs/l_net/l_net_wins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/l_net/l_net_wins.c -------------------------------------------------------------------------------- /libs/l_net/l_net_wins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/l_net/l_net_wins.h -------------------------------------------------------------------------------- /libs/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/mathlib.h -------------------------------------------------------------------------------- /libs/mathlib/bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/mathlib/bbox.c -------------------------------------------------------------------------------- /libs/mathlib/m4x4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/mathlib/m4x4.c -------------------------------------------------------------------------------- /libs/mathlib/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/mathlib/mathlib.c -------------------------------------------------------------------------------- /libs/mathlib/mathlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/mathlib/mathlib.vcxproj -------------------------------------------------------------------------------- /libs/mathlib/mathlib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/mathlib/mathlib.vcxproj.filters -------------------------------------------------------------------------------- /libs/mathlib/ray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/mathlib/ray.c -------------------------------------------------------------------------------- /libs/md4lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/md4lib.h -------------------------------------------------------------------------------- /libs/md5lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/md5lib.h -------------------------------------------------------------------------------- /libs/md5lib/Conscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/md5lib/Conscript -------------------------------------------------------------------------------- /libs/md5lib/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/md5lib/md4.c -------------------------------------------------------------------------------- /libs/md5lib/md5lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/md5lib/md5lib.c -------------------------------------------------------------------------------- /libs/md5lib/md5lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/md5lib/md5lib.vcxproj -------------------------------------------------------------------------------- /libs/md5lib/md5lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/md5lib/md5lib.vcxproj.filters -------------------------------------------------------------------------------- /libs/missing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/missing.h -------------------------------------------------------------------------------- /libs/pak/pakstuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/pak/pakstuff.cpp -------------------------------------------------------------------------------- /libs/pak/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/pak/unzip.cpp -------------------------------------------------------------------------------- /libs/pak/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/pak/unzip.h -------------------------------------------------------------------------------- /libs/pakstuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/pakstuff.h -------------------------------------------------------------------------------- /libs/picomodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel.h -------------------------------------------------------------------------------- /libs/picomodel/lwo/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/lwo/clip.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/envelope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/lwo/envelope.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/lwo/list.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/lwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/lwo/lwio.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/lwo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/lwo/lwo2.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/lwo2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/lwo/lwo2.h -------------------------------------------------------------------------------- /libs/picomodel/lwo/lwob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/lwo/lwob.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/pntspols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/lwo/pntspols.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/lwo/surface.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/vecmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/lwo/vecmath.c -------------------------------------------------------------------------------- /libs/picomodel/lwo/vmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/lwo/vmap.c -------------------------------------------------------------------------------- /libs/picomodel/picointernal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/picointernal.c -------------------------------------------------------------------------------- /libs/picomodel/picointernal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/picointernal.h -------------------------------------------------------------------------------- /libs/picomodel/picomodel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/picomodel.c -------------------------------------------------------------------------------- /libs/picomodel/picomodel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/picomodel.vcxproj -------------------------------------------------------------------------------- /libs/picomodel/picomodules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/picomodules.c -------------------------------------------------------------------------------- /libs/picomodel/pm_3ds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_3ds.c -------------------------------------------------------------------------------- /libs/picomodel/pm_ase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_ase.c -------------------------------------------------------------------------------- /libs/picomodel/pm_fm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_fm.c -------------------------------------------------------------------------------- /libs/picomodel/pm_fm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_fm.h -------------------------------------------------------------------------------- /libs/picomodel/pm_iqm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_iqm.c -------------------------------------------------------------------------------- /libs/picomodel/pm_lwo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_lwo.c -------------------------------------------------------------------------------- /libs/picomodel/pm_md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_md2.c -------------------------------------------------------------------------------- /libs/picomodel/pm_md3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_md3.c -------------------------------------------------------------------------------- /libs/picomodel/pm_mdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_mdc.c -------------------------------------------------------------------------------- /libs/picomodel/pm_ms3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_ms3d.c -------------------------------------------------------------------------------- /libs/picomodel/pm_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_obj.c -------------------------------------------------------------------------------- /libs/picomodel/pm_terrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/picomodel/pm_terrain.c -------------------------------------------------------------------------------- /libs/splines/math_angles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/math_angles.cpp -------------------------------------------------------------------------------- /libs/splines/math_angles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/math_angles.h -------------------------------------------------------------------------------- /libs/splines/math_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/math_matrix.cpp -------------------------------------------------------------------------------- /libs/splines/math_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/math_matrix.h -------------------------------------------------------------------------------- /libs/splines/math_quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/math_quaternion.cpp -------------------------------------------------------------------------------- /libs/splines/math_quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/math_quaternion.h -------------------------------------------------------------------------------- /libs/splines/math_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/math_vector.cpp -------------------------------------------------------------------------------- /libs/splines/math_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/math_vector.h -------------------------------------------------------------------------------- /libs/splines/q_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/q_parse.cpp -------------------------------------------------------------------------------- /libs/splines/q_shared.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/q_shared.cpp -------------------------------------------------------------------------------- /libs/splines/q_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/q_shared.h -------------------------------------------------------------------------------- /libs/splines/splines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/splines.cpp -------------------------------------------------------------------------------- /libs/splines/splines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/splines.h -------------------------------------------------------------------------------- /libs/splines/splines.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/splines.vcxproj -------------------------------------------------------------------------------- /libs/splines/splines.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/splines.vcxproj.filters -------------------------------------------------------------------------------- /libs/splines/util_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/util_list.h -------------------------------------------------------------------------------- /libs/splines/util_str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/util_str.cpp -------------------------------------------------------------------------------- /libs/splines/util_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/splines/util_str.h -------------------------------------------------------------------------------- /libs/stdint.msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/stdint.msvc.h -------------------------------------------------------------------------------- /libs/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/str.h -------------------------------------------------------------------------------- /libs/synapse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/synapse.h -------------------------------------------------------------------------------- /libs/synapse/doc/design.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/synapse/doc/design.txt -------------------------------------------------------------------------------- /libs/synapse/doc/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/synapse/doc/runtime.txt -------------------------------------------------------------------------------- /libs/synapse/doc/unload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/synapse/doc/unload.txt -------------------------------------------------------------------------------- /libs/synapse/synapse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/synapse/synapse.cpp -------------------------------------------------------------------------------- /libs/synapse/synapse.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/synapse/synapse.vcxproj -------------------------------------------------------------------------------- /libs/synapse/synapse.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/libs/synapse/synapse.vcxproj.filters -------------------------------------------------------------------------------- /makeversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/makeversion.py -------------------------------------------------------------------------------- /memcheck-amd64-openbsd.core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/memcheck-amd64-openbsd.core -------------------------------------------------------------------------------- /plugins/eclassfgd/fgd.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/eclassfgd/fgd.def -------------------------------------------------------------------------------- /plugins/eclassfgd/fgd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/eclassfgd/fgd.vcxproj -------------------------------------------------------------------------------- /plugins/eclassfgd/fgd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/eclassfgd/fgd.vcxproj.filters -------------------------------------------------------------------------------- /plugins/eclassfgd/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/eclassfgd/plugin.cpp -------------------------------------------------------------------------------- /plugins/eclassfgd/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/eclassfgd/plugin.h -------------------------------------------------------------------------------- /plugins/entity/eclassmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/eclassmodel.cpp -------------------------------------------------------------------------------- /plugins/entity/entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/entity.cpp -------------------------------------------------------------------------------- /plugins/entity/entity.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/entity.def -------------------------------------------------------------------------------- /plugins/entity/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/entity.h -------------------------------------------------------------------------------- /plugins/entity/entity.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/entity.vcxproj -------------------------------------------------------------------------------- /plugins/entity/entity.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/entity.vcxproj.filters -------------------------------------------------------------------------------- /plugins/entity/entity_entitymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/entity_entitymodel.cpp -------------------------------------------------------------------------------- /plugins/entity/entity_entitymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/entity_entitymodel.h -------------------------------------------------------------------------------- /plugins/entity/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/light.cpp -------------------------------------------------------------------------------- /plugins/entity/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/light.h -------------------------------------------------------------------------------- /plugins/entity/miscmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/miscmodel.cpp -------------------------------------------------------------------------------- /plugins/entity/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/plugin.cpp -------------------------------------------------------------------------------- /plugins/entity/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/entity/plugin.h -------------------------------------------------------------------------------- /plugins/image/bmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/image/bmp.cpp -------------------------------------------------------------------------------- /plugins/image/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/image/bmp.h -------------------------------------------------------------------------------- /plugins/image/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/image/image.cpp -------------------------------------------------------------------------------- /plugins/image/image.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/image/image.def -------------------------------------------------------------------------------- /plugins/image/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/image/image.h -------------------------------------------------------------------------------- /plugins/image/image.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/image/image.vcxproj -------------------------------------------------------------------------------- /plugins/image/image.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/image/image.vcxproj.filters -------------------------------------------------------------------------------- /plugins/image/jpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/image/jpeg.cpp -------------------------------------------------------------------------------- /plugins/image/lbmlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/image/lbmlib.cpp -------------------------------------------------------------------------------- /plugins/image/lbmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/image/lbmlib.h -------------------------------------------------------------------------------- /plugins/imagehl/imagehl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagehl/imagehl.cpp -------------------------------------------------------------------------------- /plugins/imagehl/imagehl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagehl/imagehl.def -------------------------------------------------------------------------------- /plugins/imagehl/imagehl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagehl/imagehl.h -------------------------------------------------------------------------------- /plugins/imagehl/imagehl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagehl/imagehl.txt -------------------------------------------------------------------------------- /plugins/imagehl/imagehl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagehl/imagehl.vcxproj -------------------------------------------------------------------------------- /plugins/imagehl/lbmlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagehl/lbmlib.cpp -------------------------------------------------------------------------------- /plugins/imagehl/lbmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagehl/lbmlib.h -------------------------------------------------------------------------------- /plugins/imagem8/imagem8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagem8/imagem8.cpp -------------------------------------------------------------------------------- /plugins/imagem8/imagem8.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagem8/imagem8.def -------------------------------------------------------------------------------- /plugins/imagem8/imagem8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagem8/imagem8.h -------------------------------------------------------------------------------- /plugins/imagem8/imagem8.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagem8/imagem8.vcxproj -------------------------------------------------------------------------------- /plugins/imagem8/m32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagem8/m32.cpp -------------------------------------------------------------------------------- /plugins/imagem8/m32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagem8/m32.h -------------------------------------------------------------------------------- /plugins/imagem8/m8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagem8/m8.cpp -------------------------------------------------------------------------------- /plugins/imagem8/m8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagem8/m8.h -------------------------------------------------------------------------------- /plugins/imagepng/imagepng.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagepng/imagepng.def -------------------------------------------------------------------------------- /plugins/imagepng/imagepng.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagepng/imagepng.vcxproj -------------------------------------------------------------------------------- /plugins/imagepng/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagepng/plugin.cpp -------------------------------------------------------------------------------- /plugins/imagepng/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagepng/plugin.h -------------------------------------------------------------------------------- /plugins/imagewal/imagewal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagewal/imagewal.cpp -------------------------------------------------------------------------------- /plugins/imagewal/imagewal.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagewal/imagewal.def -------------------------------------------------------------------------------- /plugins/imagewal/imagewal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagewal/imagewal.h -------------------------------------------------------------------------------- /plugins/imagewal/imagewal.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagewal/imagewal.vcxproj -------------------------------------------------------------------------------- /plugins/imagewal/q2_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagewal/q2_palette.h -------------------------------------------------------------------------------- /plugins/imagewal/wal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagewal/wal.cpp -------------------------------------------------------------------------------- /plugins/imagewal/wal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/imagewal/wal.h -------------------------------------------------------------------------------- /plugins/map/map.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/map/map.def -------------------------------------------------------------------------------- /plugins/map/map.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/map/map.vcxproj -------------------------------------------------------------------------------- /plugins/map/map.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/map/map.vcxproj.filters -------------------------------------------------------------------------------- /plugins/map/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/map/parse.cpp -------------------------------------------------------------------------------- /plugins/map/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/map/plugin.cpp -------------------------------------------------------------------------------- /plugins/map/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/map/plugin.h -------------------------------------------------------------------------------- /plugins/map/write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/map/write.cpp -------------------------------------------------------------------------------- /plugins/mapxml/mapxml.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/mapxml/mapxml.def -------------------------------------------------------------------------------- /plugins/mapxml/mapxml.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/mapxml/mapxml.vcxproj -------------------------------------------------------------------------------- /plugins/mapxml/mapxml.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/mapxml/mapxml.vcxproj.filters -------------------------------------------------------------------------------- /plugins/mapxml/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/mapxml/plugin.cpp -------------------------------------------------------------------------------- /plugins/mapxml/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/mapxml/plugin.h -------------------------------------------------------------------------------- /plugins/mapxml/xmlparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/mapxml/xmlparse.cpp -------------------------------------------------------------------------------- /plugins/mapxml/xmlwrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/mapxml/xmlwrite.cpp -------------------------------------------------------------------------------- /plugins/model/cpicomodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/cpicomodel.cpp -------------------------------------------------------------------------------- /plugins/model/cpicomodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/cpicomodel.h -------------------------------------------------------------------------------- /plugins/model/cpicosurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/cpicosurface.cpp -------------------------------------------------------------------------------- /plugins/model/cpicosurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/cpicosurface.h -------------------------------------------------------------------------------- /plugins/model/miscmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/miscmodel.cpp -------------------------------------------------------------------------------- /plugins/model/model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/model.cpp -------------------------------------------------------------------------------- /plugins/model/model.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/model.def -------------------------------------------------------------------------------- /plugins/model/model.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/model.vcxproj -------------------------------------------------------------------------------- /plugins/model/model.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/model.vcxproj.filters -------------------------------------------------------------------------------- /plugins/model/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/plugin.cpp -------------------------------------------------------------------------------- /plugins/model/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/plugin.h -------------------------------------------------------------------------------- /plugins/model/remap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/remap.cpp -------------------------------------------------------------------------------- /plugins/model/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/model/surface.h -------------------------------------------------------------------------------- /plugins/sample/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/sample/plugin.cpp -------------------------------------------------------------------------------- /plugins/sample/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/sample/plugin.h -------------------------------------------------------------------------------- /plugins/sample/sample.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/sample/sample.def -------------------------------------------------------------------------------- /plugins/shaders/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/shaders/plugin.cpp -------------------------------------------------------------------------------- /plugins/shaders/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/shaders/plugin.h -------------------------------------------------------------------------------- /plugins/shaders/shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/shaders/shaders.cpp -------------------------------------------------------------------------------- /plugins/shaders/shaders.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/shaders/shaders.def -------------------------------------------------------------------------------- /plugins/shaders/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/shaders/shaders.h -------------------------------------------------------------------------------- /plugins/shaders/shaders.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/shaders/shaders.proj -------------------------------------------------------------------------------- /plugins/shaders/shaders.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/shaders/shaders.vcxproj -------------------------------------------------------------------------------- /plugins/shaders/shadershl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/shaders/shadershl.def -------------------------------------------------------------------------------- /plugins/spritemodel/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/spritemodel/plugin.cpp -------------------------------------------------------------------------------- /plugins/spritemodel/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/spritemodel/plugin.h -------------------------------------------------------------------------------- /plugins/spritemodel/spritemodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/spritemodel/spritemodel.cpp -------------------------------------------------------------------------------- /plugins/spritemodel/spritemodel.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/spritemodel/spritemodel.def -------------------------------------------------------------------------------- /plugins/spritemodel/spritemodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/spritemodel/spritemodel.h -------------------------------------------------------------------------------- /plugins/surface/surface.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/surface/surface.def -------------------------------------------------------------------------------- /plugins/surface/surface.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/surface/surface.vcxproj -------------------------------------------------------------------------------- /plugins/surface/surfacedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/surface/surfacedialog.cpp -------------------------------------------------------------------------------- /plugins/surface/surfacedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/surface/surfacedialog.h -------------------------------------------------------------------------------- /plugins/surface/surfdlg_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/surface/surfdlg_plugin.cpp -------------------------------------------------------------------------------- /plugins/surface/surfdlg_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/surface/surfdlg_plugin.h -------------------------------------------------------------------------------- /plugins/surface_idtech2/surfaceflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/surface_idtech2/surfaceflags.h -------------------------------------------------------------------------------- /plugins/textool/2DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/2DView.cpp -------------------------------------------------------------------------------- /plugins/textool/2DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/2DView.h -------------------------------------------------------------------------------- /plugins/textool/ControlPointsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/ControlPointsManager.h -------------------------------------------------------------------------------- /plugins/textool/Doc/Image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/Doc/Image2.jpg -------------------------------------------------------------------------------- /plugins/textool/Doc/TexTool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/Doc/TexTool.html -------------------------------------------------------------------------------- /plugins/textool/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/StdAfx.cpp -------------------------------------------------------------------------------- /plugins/textool/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/StdAfx.h -------------------------------------------------------------------------------- /plugins/textool/TexTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/TexTool.cpp -------------------------------------------------------------------------------- /plugins/textool/TexTool.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/TexTool.rc -------------------------------------------------------------------------------- /plugins/textool/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/changelog.txt -------------------------------------------------------------------------------- /plugins/textool/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/resource.h -------------------------------------------------------------------------------- /plugins/textool/textool.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/textool.def -------------------------------------------------------------------------------- /plugins/textool/textool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/textool/textool.vcxproj -------------------------------------------------------------------------------- /plugins/vfspak/vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspak/vfs.cpp -------------------------------------------------------------------------------- /plugins/vfspak/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspak/vfs.h -------------------------------------------------------------------------------- /plugins/vfspak/vfspak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspak/vfspak.cpp -------------------------------------------------------------------------------- /plugins/vfspak/vfspak.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspak/vfspak.def -------------------------------------------------------------------------------- /plugins/vfspak/vfspak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspak/vfspak.h -------------------------------------------------------------------------------- /plugins/vfspak/vfspak.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspak/vfspak.vcxproj -------------------------------------------------------------------------------- /plugins/vfspak/vfspak.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspak/vfspak.vcxproj.filters -------------------------------------------------------------------------------- /plugins/vfspk3/unzip-vfspk3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspk3/unzip-vfspk3.h -------------------------------------------------------------------------------- /plugins/vfspk3/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspk3/unzip.cpp -------------------------------------------------------------------------------- /plugins/vfspk3/vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspk3/vfs.cpp -------------------------------------------------------------------------------- /plugins/vfspk3/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspk3/vfs.h -------------------------------------------------------------------------------- /plugins/vfspk3/vfspk3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspk3/vfspk3.cpp -------------------------------------------------------------------------------- /plugins/vfspk3/vfspk3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspk3/vfspk3.def -------------------------------------------------------------------------------- /plugins/vfspk3/vfspk3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspk3/vfspk3.h -------------------------------------------------------------------------------- /plugins/vfspk3/vfspk3.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspk3/vfspk3.proj -------------------------------------------------------------------------------- /plugins/vfspk3/vfspk3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspk3/vfspk3.vcxproj -------------------------------------------------------------------------------- /plugins/vfspk3/vfspk3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfspk3/vfspk3.vcxproj.filters -------------------------------------------------------------------------------- /plugins/vfswad/unwad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfswad/unwad.cpp -------------------------------------------------------------------------------- /plugins/vfswad/unwad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfswad/unwad.h -------------------------------------------------------------------------------- /plugins/vfswad/vfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfswad/vfs.cpp -------------------------------------------------------------------------------- /plugins/vfswad/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfswad/vfs.h -------------------------------------------------------------------------------- /plugins/vfswad/vfswad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfswad/vfswad.cpp -------------------------------------------------------------------------------- /plugins/vfswad/vfswad.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfswad/vfswad.def -------------------------------------------------------------------------------- /plugins/vfswad/vfswad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfswad/vfswad.h -------------------------------------------------------------------------------- /plugins/vfswad/vfswad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfswad/vfswad.txt -------------------------------------------------------------------------------- /plugins/vfswad/vfswad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfswad/vfswad.vcxproj -------------------------------------------------------------------------------- /plugins/vfswad/vfswad.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/plugins/vfswad/vfswad.vcxproj.filters -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/po/de.po -------------------------------------------------------------------------------- /prepare_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/prepare_archive.py -------------------------------------------------------------------------------- /radiant.bin.core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant.bin.core -------------------------------------------------------------------------------- /radiant.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant.pot -------------------------------------------------------------------------------- /radiant.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant.sln -------------------------------------------------------------------------------- /radiant/Makefile.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/Makefile.mac -------------------------------------------------------------------------------- /radiant/bp_dlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/bp_dlg.cpp -------------------------------------------------------------------------------- /radiant/brush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/brush.cpp -------------------------------------------------------------------------------- /radiant/brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/brush.h -------------------------------------------------------------------------------- /radiant/brush_primit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/brush_primit.cpp -------------------------------------------------------------------------------- /radiant/brushscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/brushscript.cpp -------------------------------------------------------------------------------- /radiant/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/camera.h -------------------------------------------------------------------------------- /radiant/camwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/camwindow.cpp -------------------------------------------------------------------------------- /radiant/camwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/camwindow.h -------------------------------------------------------------------------------- /radiant/csg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/csg.cpp -------------------------------------------------------------------------------- /radiant/dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/dialog.cpp -------------------------------------------------------------------------------- /radiant/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/dialog.h -------------------------------------------------------------------------------- /radiant/dialoginfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/dialoginfo.cpp -------------------------------------------------------------------------------- /radiant/drag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/drag.cpp -------------------------------------------------------------------------------- /radiant/eclass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/eclass.cpp -------------------------------------------------------------------------------- /radiant/eclass_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/eclass_def.cpp -------------------------------------------------------------------------------- /radiant/eclass_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/eclass_def.h -------------------------------------------------------------------------------- /radiant/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/error.cpp -------------------------------------------------------------------------------- /radiant/feedback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/feedback.cpp -------------------------------------------------------------------------------- /radiant/feedback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/feedback.h -------------------------------------------------------------------------------- /radiant/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/file.cpp -------------------------------------------------------------------------------- /radiant/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/file.h -------------------------------------------------------------------------------- /radiant/filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/filters.cpp -------------------------------------------------------------------------------- /radiant/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/filters.h -------------------------------------------------------------------------------- /radiant/findtexturedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/findtexturedialog.cpp -------------------------------------------------------------------------------- /radiant/findtexturedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/findtexturedialog.h -------------------------------------------------------------------------------- /radiant/glinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/glinterface.cpp -------------------------------------------------------------------------------- /radiant/glwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/glwidget.cpp -------------------------------------------------------------------------------- /radiant/glwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/glwidget.h -------------------------------------------------------------------------------- /radiant/glwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/glwindow.cpp -------------------------------------------------------------------------------- /radiant/glwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/glwindow.h -------------------------------------------------------------------------------- /radiant/groupdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/groupdialog.cpp -------------------------------------------------------------------------------- /radiant/groupdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/groupdialog.h -------------------------------------------------------------------------------- /radiant/gtkdlgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/gtkdlgs.cpp -------------------------------------------------------------------------------- /radiant/gtkmisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/gtkmisc.cpp -------------------------------------------------------------------------------- /radiant/gtkmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/gtkmisc.h -------------------------------------------------------------------------------- /radiant/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/main.cpp -------------------------------------------------------------------------------- /radiant/mainframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/mainframe.cpp -------------------------------------------------------------------------------- /radiant/mainframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/mainframe.h -------------------------------------------------------------------------------- /radiant/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/map.cpp -------------------------------------------------------------------------------- /radiant/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/map.h -------------------------------------------------------------------------------- /radiant/missing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/missing.cpp -------------------------------------------------------------------------------- /radiant/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/parse.cpp -------------------------------------------------------------------------------- /radiant/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/parse.h -------------------------------------------------------------------------------- /radiant/patchdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/patchdialog.cpp -------------------------------------------------------------------------------- /radiant/patchdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/patchdialog.h -------------------------------------------------------------------------------- /radiant/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/plugin.h -------------------------------------------------------------------------------- /radiant/pluginentities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/pluginentities.cpp -------------------------------------------------------------------------------- /radiant/pluginmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/pluginmanager.cpp -------------------------------------------------------------------------------- /radiant/pluginmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/pluginmanager.h -------------------------------------------------------------------------------- /radiant/pmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/pmesh.cpp -------------------------------------------------------------------------------- /radiant/points.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/points.cpp -------------------------------------------------------------------------------- /radiant/points.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/points.h -------------------------------------------------------------------------------- /radiant/preferences.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/preferences.cpp -------------------------------------------------------------------------------- /radiant/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/preferences.h -------------------------------------------------------------------------------- /radiant/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/profile.cpp -------------------------------------------------------------------------------- /radiant/qe3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/qe3.cpp -------------------------------------------------------------------------------- /radiant/qe3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/qe3.h -------------------------------------------------------------------------------- /radiant/qedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/qedefs.h -------------------------------------------------------------------------------- /radiant/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/qfiles.h -------------------------------------------------------------------------------- /radiant/qgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/qgl.c -------------------------------------------------------------------------------- /radiant/qgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/qgl.h -------------------------------------------------------------------------------- /radiant/qgl_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/qgl_ext.cpp -------------------------------------------------------------------------------- /radiant/queuedraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/queuedraw.cpp -------------------------------------------------------------------------------- /radiant/radiant.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/radiant.ico -------------------------------------------------------------------------------- /radiant/radiant.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/radiant.rc -------------------------------------------------------------------------------- /radiant/radiant.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/radiant.vcxproj -------------------------------------------------------------------------------- /radiant/radiant.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/radiant.vcxproj.filters -------------------------------------------------------------------------------- /radiant/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/resource.h -------------------------------------------------------------------------------- /radiant/select.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/select.cpp -------------------------------------------------------------------------------- /radiant/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/select.h -------------------------------------------------------------------------------- /radiant/selectedface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/selectedface.cpp -------------------------------------------------------------------------------- /radiant/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/stdafx.cpp -------------------------------------------------------------------------------- /radiant/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/stdafx.h -------------------------------------------------------------------------------- /radiant/surfacedialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/surfacedialog.cpp -------------------------------------------------------------------------------- /radiant/surfacedialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/surfacedialog.h -------------------------------------------------------------------------------- /radiant/surfaceplugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/surfaceplugin.cpp -------------------------------------------------------------------------------- /radiant/surfaceplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/surfaceplugin.h -------------------------------------------------------------------------------- /radiant/targetname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/targetname.cpp -------------------------------------------------------------------------------- /radiant/texmanip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/texmanip.cpp -------------------------------------------------------------------------------- /radiant/texmanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/texmanip.h -------------------------------------------------------------------------------- /radiant/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/textures.h -------------------------------------------------------------------------------- /radiant/texwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/texwindow.cpp -------------------------------------------------------------------------------- /radiant/texwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/texwindow.h -------------------------------------------------------------------------------- /radiant/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/ui.cpp -------------------------------------------------------------------------------- /radiant/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/ui.h -------------------------------------------------------------------------------- /radiant/undo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/undo.cpp -------------------------------------------------------------------------------- /radiant/undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/undo.h -------------------------------------------------------------------------------- /radiant/vertsel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/vertsel.cpp -------------------------------------------------------------------------------- /radiant/watchbsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/watchbsp.cpp -------------------------------------------------------------------------------- /radiant/watchbsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/watchbsp.h -------------------------------------------------------------------------------- /radiant/winding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/winding.cpp -------------------------------------------------------------------------------- /radiant/winding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/winding.h -------------------------------------------------------------------------------- /radiant/xmlstuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/xmlstuff.h -------------------------------------------------------------------------------- /radiant/xywindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/xywindow.cpp -------------------------------------------------------------------------------- /radiant/xywindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/xywindow.h -------------------------------------------------------------------------------- /radiant/z.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/z.cpp -------------------------------------------------------------------------------- /radiant/z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/z.h -------------------------------------------------------------------------------- /radiant/zwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/zwindow.cpp -------------------------------------------------------------------------------- /radiant/zwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/radiant/zwindow.h -------------------------------------------------------------------------------- /tools/.gitignore: -------------------------------------------------------------------------------- 1 | x64 2 | Debug 3 | Release 4 | -------------------------------------------------------------------------------- /tools/quake2/common/bspfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/bspfile.c -------------------------------------------------------------------------------- /tools/quake2/common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/bspfile.h -------------------------------------------------------------------------------- /tools/quake2/common/cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/cmdlib.c -------------------------------------------------------------------------------- /tools/quake2/common/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/cmdlib.h -------------------------------------------------------------------------------- /tools/quake2/common/inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/inout.c -------------------------------------------------------------------------------- /tools/quake2/common/inout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/inout.h -------------------------------------------------------------------------------- /tools/quake2/common/l3dslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/l3dslib.c -------------------------------------------------------------------------------- /tools/quake2/common/l3dslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/l3dslib.h -------------------------------------------------------------------------------- /tools/quake2/common/lbmlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/lbmlib.c -------------------------------------------------------------------------------- /tools/quake2/common/lbmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/lbmlib.h -------------------------------------------------------------------------------- /tools/quake2/common/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/mathlib.c -------------------------------------------------------------------------------- /tools/quake2/common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/mathlib.h -------------------------------------------------------------------------------- /tools/quake2/common/path_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/path_init.c -------------------------------------------------------------------------------- /tools/quake2/common/polylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/polylib.c -------------------------------------------------------------------------------- /tools/quake2/common/polylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/polylib.h -------------------------------------------------------------------------------- /tools/quake2/common/q2_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/q2_threads.h -------------------------------------------------------------------------------- /tools/quake2/common/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/qfiles.h -------------------------------------------------------------------------------- /tools/quake2/common/scriplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/scriplib.c -------------------------------------------------------------------------------- /tools/quake2/common/scriplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/scriplib.h -------------------------------------------------------------------------------- /tools/quake2/common/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/threads.c -------------------------------------------------------------------------------- /tools/quake2/common/trilib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/trilib.c -------------------------------------------------------------------------------- /tools/quake2/common/trilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/common/trilib.h -------------------------------------------------------------------------------- /tools/quake2/extra/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/COPYING.txt -------------------------------------------------------------------------------- /tools/quake2/extra/Unpack/Unpack.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/Unpack/Unpack.dsp -------------------------------------------------------------------------------- /tools/quake2/extra/Unpack/Unpack.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/Unpack/Unpack.dsw -------------------------------------------------------------------------------- /tools/quake2/extra/Unpack/Unpack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/Unpack/Unpack.java -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/bsp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/bsp.mak -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/csg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/csg.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/faces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/faces.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/gldraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/gldraw.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/glfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/glfile.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/makefile -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/map.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/nodraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/nodraw.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/portals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/portals.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/prtfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/prtfile.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/qbsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/qbsp.h -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/qbsp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/qbsp3.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qbsp3/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qbsp3/tree.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qrad3/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qrad3/makefile -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qrad3/patches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qrad3/patches.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qrad3/qrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qrad3/qrad.h -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qrad3/qrad3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qrad3/qrad3.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qrad3/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qrad3/trace.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qvis3/flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qvis3/flow.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qvis3/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qvis3/makefile -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qvis3/qvis3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qvis3/qvis3.c -------------------------------------------------------------------------------- /tools/quake2/extra/bsp/qvis3/vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/bsp/qvis3/vis.h -------------------------------------------------------------------------------- /tools/quake2/extra/common/bspfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/bspfile.c -------------------------------------------------------------------------------- /tools/quake2/extra/common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/bspfile.h -------------------------------------------------------------------------------- /tools/quake2/extra/common/cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/cmdlib.c -------------------------------------------------------------------------------- /tools/quake2/extra/common/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/cmdlib.h -------------------------------------------------------------------------------- /tools/quake2/extra/common/l3dslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/l3dslib.c -------------------------------------------------------------------------------- /tools/quake2/extra/common/l3dslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/l3dslib.h -------------------------------------------------------------------------------- /tools/quake2/extra/common/lbmlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/lbmlib.c -------------------------------------------------------------------------------- /tools/quake2/extra/common/lbmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/lbmlib.h -------------------------------------------------------------------------------- /tools/quake2/extra/common/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/mathlib.c -------------------------------------------------------------------------------- /tools/quake2/extra/common/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/mathlib.h -------------------------------------------------------------------------------- /tools/quake2/extra/common/mdfour.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/mdfour.c -------------------------------------------------------------------------------- /tools/quake2/extra/common/mdfour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/mdfour.h -------------------------------------------------------------------------------- /tools/quake2/extra/common/polylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/polylib.c -------------------------------------------------------------------------------- /tools/quake2/extra/common/polylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/polylib.h -------------------------------------------------------------------------------- /tools/quake2/extra/common/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/qfiles.h -------------------------------------------------------------------------------- /tools/quake2/extra/common/scriplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/scriplib.c -------------------------------------------------------------------------------- /tools/quake2/extra/common/scriplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/scriplib.h -------------------------------------------------------------------------------- /tools/quake2/extra/common/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/threads.c -------------------------------------------------------------------------------- /tools/quake2/extra/common/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/threads.h -------------------------------------------------------------------------------- /tools/quake2/extra/common/trilib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/trilib.c -------------------------------------------------------------------------------- /tools/quake2/extra/common/trilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/common/trilib.h -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/anorms.h -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/images.c -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/makefile -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/models.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/models.c -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/qdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/qdata.c -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/qdata.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/qdata.dsp -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/qdata.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/qdata.dsw -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/qdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/qdata.h -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/qdata.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/qdata.mak -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/sprites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/sprites.c -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/tables.c -------------------------------------------------------------------------------- /tools/quake2/extra/qdata/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qdata/video.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/brush.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/brush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/brush.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/bspfile.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/camera.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/camera.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/cmdlib.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/cmdlib.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/csg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/csg.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/drag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/drag.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/eclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/eclass.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/entity.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/entity.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/entityw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/entityw.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/glingr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/glingr.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/icon1.ico -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/lbmlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/lbmlib.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/lbmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/lbmlib.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/makefile -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/map.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/map.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/mathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/mathlib.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/mathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/mathlib.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/mru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/mru.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/mru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/mru.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/parse.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/parse.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/points.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/points.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/q.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/q.bmp -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/qe3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/qe3.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/qe3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/qe3.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/qe4.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/qe4.mak -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/qedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/qedefs.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/qfiles.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/resource.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/select.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/select.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/textures.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/textures.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/toolbar1.bmp -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/vertsel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/vertsel.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/view.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/win_cam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/win_cam.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/win_dlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/win_dlg.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/win_ent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/win_ent.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/win_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/win_main.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/win_qe3.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/win_qe3.aps -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/win_qe3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/win_qe3.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/win_qe3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/win_qe3.rc -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/win_xy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/win_xy.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/win_z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/win_z.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/xy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/xy.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/xy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/xy.h -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/z.c -------------------------------------------------------------------------------- /tools/quake2/extra/qe4/z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/qe4/z.h -------------------------------------------------------------------------------- /tools/quake2/extra/texpaint/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/texpaint/docs.txt -------------------------------------------------------------------------------- /tools/quake2/extra/texpaint/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/texpaint/resource.h -------------------------------------------------------------------------------- /tools/quake2/extra/texpaint/texmake.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/texpaint/texmake.rc -------------------------------------------------------------------------------- /tools/quake2/extra/texpaint/texpaint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/texpaint/texpaint.c -------------------------------------------------------------------------------- /tools/quake2/extra/texpaint/texpaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/texpaint/texpaint.h -------------------------------------------------------------------------------- /tools/quake2/extra/texpaint/win_cam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/texpaint/win_cam.c -------------------------------------------------------------------------------- /tools/quake2/extra/texpaint/win_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/texpaint/win_main.c -------------------------------------------------------------------------------- /tools/quake2/extra/texpaint/win_pal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/extra/texpaint/win_pal.c -------------------------------------------------------------------------------- /tools/quake2/q2map/brushbsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/brushbsp.c -------------------------------------------------------------------------------- /tools/quake2/q2map/csg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/csg.c -------------------------------------------------------------------------------- /tools/quake2/q2map/faces.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/faces.c -------------------------------------------------------------------------------- /tools/quake2/q2map/flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/flow.c -------------------------------------------------------------------------------- /tools/quake2/q2map/gldraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/gldraw.c -------------------------------------------------------------------------------- /tools/quake2/q2map/glfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/glfile.c -------------------------------------------------------------------------------- /tools/quake2/q2map/leakfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/leakfile.c -------------------------------------------------------------------------------- /tools/quake2/q2map/lightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/lightmap.c -------------------------------------------------------------------------------- /tools/quake2/q2map/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/main.c -------------------------------------------------------------------------------- /tools/quake2/q2map/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/map.c -------------------------------------------------------------------------------- /tools/quake2/q2map/nodraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/nodraw.c -------------------------------------------------------------------------------- /tools/quake2/q2map/patches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/patches.c -------------------------------------------------------------------------------- /tools/quake2/q2map/portals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/portals.c -------------------------------------------------------------------------------- /tools/quake2/q2map/prtfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/prtfile.c -------------------------------------------------------------------------------- /tools/quake2/q2map/q2map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/q2map.h -------------------------------------------------------------------------------- /tools/quake2/q2map/qbsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/qbsp.c -------------------------------------------------------------------------------- /tools/quake2/q2map/qbsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/qbsp.h -------------------------------------------------------------------------------- /tools/quake2/q2map/qrad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/qrad.c -------------------------------------------------------------------------------- /tools/quake2/q2map/qrad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/qrad.h -------------------------------------------------------------------------------- /tools/quake2/q2map/qvis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/qvis.c -------------------------------------------------------------------------------- /tools/quake2/q2map/qvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/qvis.h -------------------------------------------------------------------------------- /tools/quake2/q2map/textures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/textures.c -------------------------------------------------------------------------------- /tools/quake2/q2map/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/trace.c -------------------------------------------------------------------------------- /tools/quake2/q2map/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/tree.c -------------------------------------------------------------------------------- /tools/quake2/q2map/writebsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/q2map/writebsp.c -------------------------------------------------------------------------------- /tools/quake2/qdata/anorms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata/anorms.h -------------------------------------------------------------------------------- /tools/quake2/qdata/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata/images.c -------------------------------------------------------------------------------- /tools/quake2/qdata/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata/makefile -------------------------------------------------------------------------------- /tools/quake2/qdata/models.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata/models.c -------------------------------------------------------------------------------- /tools/quake2/qdata/qdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata/qdata.c -------------------------------------------------------------------------------- /tools/quake2/qdata/qdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata/qdata.h -------------------------------------------------------------------------------- /tools/quake2/qdata/sprites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata/sprites.c -------------------------------------------------------------------------------- /tools/quake2/qdata/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata/tables.c -------------------------------------------------------------------------------- /tools/quake2/qdata/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata/video.c -------------------------------------------------------------------------------- /tools/quake2/qdata_heretic2/adpcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata_heretic2/adpcm.h -------------------------------------------------------------------------------- /tools/quake2/qdata_heretic2/book.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata_heretic2/book.c -------------------------------------------------------------------------------- /tools/quake2/qdata_heretic2/pics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata_heretic2/pics.c -------------------------------------------------------------------------------- /tools/quake2/qdata_heretic2/qdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata_heretic2/qdata.c -------------------------------------------------------------------------------- /tools/quake2/qdata_heretic2/qdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata_heretic2/qdata.h -------------------------------------------------------------------------------- /tools/quake2/qdata_heretic2/tmix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata_heretic2/tmix.c -------------------------------------------------------------------------------- /tools/quake2/qdata_heretic2/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake2/qdata_heretic2/video.c -------------------------------------------------------------------------------- /tools/quake3/common/aselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/aselib.c -------------------------------------------------------------------------------- /tools/quake3/common/aselib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/aselib.h -------------------------------------------------------------------------------- /tools/quake3/common/bspfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/bspfile.c -------------------------------------------------------------------------------- /tools/quake3/common/bspfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/bspfile.h -------------------------------------------------------------------------------- /tools/quake3/common/cmdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/cmdlib.c -------------------------------------------------------------------------------- /tools/quake3/common/cmdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/cmdlib.h -------------------------------------------------------------------------------- /tools/quake3/common/imagelib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/imagelib.c -------------------------------------------------------------------------------- /tools/quake3/common/imagelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/imagelib.h -------------------------------------------------------------------------------- /tools/quake3/common/inout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/inout.c -------------------------------------------------------------------------------- /tools/quake3/common/inout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/inout.h -------------------------------------------------------------------------------- /tools/quake3/common/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/jpeg.c -------------------------------------------------------------------------------- /tools/quake3/common/l3dslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/l3dslib.c -------------------------------------------------------------------------------- /tools/quake3/common/l3dslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/l3dslib.h -------------------------------------------------------------------------------- /tools/quake3/common/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/mutex.c -------------------------------------------------------------------------------- /tools/quake3/common/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/mutex.h -------------------------------------------------------------------------------- /tools/quake3/common/polylib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/polylib.c -------------------------------------------------------------------------------- /tools/quake3/common/polylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/polylib.h -------------------------------------------------------------------------------- /tools/quake3/common/polyset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/polyset.h -------------------------------------------------------------------------------- /tools/quake3/common/qfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/qfiles.h -------------------------------------------------------------------------------- /tools/quake3/common/qthreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/qthreads.h -------------------------------------------------------------------------------- /tools/quake3/common/scriplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/scriplib.c -------------------------------------------------------------------------------- /tools/quake3/common/scriplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/scriplib.h -------------------------------------------------------------------------------- /tools/quake3/common/surfaceflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/surfaceflags.h -------------------------------------------------------------------------------- /tools/quake3/common/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/threads.c -------------------------------------------------------------------------------- /tools/quake3/common/trilib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/trilib.c -------------------------------------------------------------------------------- /tools/quake3/common/trilib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/trilib.h -------------------------------------------------------------------------------- /tools/quake3/common/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/unzip.c -------------------------------------------------------------------------------- /tools/quake3/common/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/unzip.h -------------------------------------------------------------------------------- /tools/quake3/common/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/vfs.c -------------------------------------------------------------------------------- /tools/quake3/common/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/common/vfs.h -------------------------------------------------------------------------------- /tools/quake3/q3data/3dslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/3dslib.c -------------------------------------------------------------------------------- /tools/quake3/q3data/3dslib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/3dslib.h -------------------------------------------------------------------------------- /tools/quake3/q3data/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/compress.c -------------------------------------------------------------------------------- /tools/quake3/q3data/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/images.c -------------------------------------------------------------------------------- /tools/quake3/q3data/md3lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/md3lib.c -------------------------------------------------------------------------------- /tools/quake3/q3data/md3lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/md3lib.h -------------------------------------------------------------------------------- /tools/quake3/q3data/models.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/models.c -------------------------------------------------------------------------------- /tools/quake3/q3data/oldstuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/oldstuff.c -------------------------------------------------------------------------------- /tools/quake3/q3data/p3dlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/p3dlib.c -------------------------------------------------------------------------------- /tools/quake3/q3data/p3dlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/p3dlib.h -------------------------------------------------------------------------------- /tools/quake3/q3data/polyset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/polyset.c -------------------------------------------------------------------------------- /tools/quake3/q3data/q3data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/q3data.c -------------------------------------------------------------------------------- /tools/quake3/q3data/q3data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/q3data.h -------------------------------------------------------------------------------- /tools/quake3/q3data/q3data.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/q3data.vcxproj -------------------------------------------------------------------------------- /tools/quake3/q3data/stripper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/stripper.c -------------------------------------------------------------------------------- /tools/quake3/q3data/video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3data/video.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/brush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/brush.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/brush_primit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/brush_primit.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/bsp.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/bsp_analyze.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/bsp_analyze.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/bsp_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/bsp_info.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/bsp_scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/bsp_scale.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/bspfile_ibsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/bspfile_ibsp.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/bspfile_rbsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/bspfile_rbsp.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/convert_ase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/convert_ase.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/convert_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/convert_bsp.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/convert_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/convert_map.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/decals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/decals.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/exportents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/exportents.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/facebsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/facebsp.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/fixaas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/fixaas.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/fog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/fog.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/game__null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game__null.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_ef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_ef.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_etut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_etut.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_ja.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_ja.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_jk2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_jk2.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_nexuiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_nexuiz.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_qfusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_qfusion.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_quake3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_quake3.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_reaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_reaction.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_sof2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_sof2.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_t.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_tenebrae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_tenebrae.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_wolf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_wolf.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/game_wolfet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/game_wolfet.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/image.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/leakfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/leakfile.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/light.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/light_bounce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/light_bounce.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/light_shadows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/light_shadows.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/light_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/light_trace.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/light_ydnar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/light_ydnar.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/lightmaps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/lightmaps.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/listen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/listen.pl -------------------------------------------------------------------------------- /tools/quake3/q3map2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/main.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/map.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/mesh.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/minimap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/minimap.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/model.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/patch.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/path_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/path_init.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/portals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/portals.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/prtfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/prtfile.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/q3map2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/q3map2.h -------------------------------------------------------------------------------- /tools/quake3/q3map2/q3map2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/q3map2.ico -------------------------------------------------------------------------------- /tools/quake3/q3map2/q3map2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/q3map2.rc -------------------------------------------------------------------------------- /tools/quake3/q3map2/q3map2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/q3map2.vcxproj -------------------------------------------------------------------------------- /tools/quake3/q3map2/shaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/shaders.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/surface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/surface.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/surface_extra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/surface_extra.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/surface_fur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/surface_fur.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/surface_meta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/surface_meta.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/tjunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/tjunction.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/tree.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/vis.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/visflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/visflow.c -------------------------------------------------------------------------------- /tools/quake3/q3map2/writebsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/quake3/q3map2/writebsp.c -------------------------------------------------------------------------------- /tools/urt/tools/quake3/q3map2/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/urt/tools/quake3/q3map2/bsp.c -------------------------------------------------------------------------------- /tools/urt/tools/quake3/q3map2/fog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/urt/tools/quake3/q3map2/fog.c -------------------------------------------------------------------------------- /tools/urt/tools/quake3/q3map2/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/urt/tools/quake3/q3map2/map.c -------------------------------------------------------------------------------- /tools/urt/tools/quake3/q3map2/vis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/tools/urt/tools/quake3/q3map2/vis.c -------------------------------------------------------------------------------- /uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/uncrustify.cfg -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTimo/GtkRadiant/HEAD/utils.py --------------------------------------------------------------------------------