├── .gitignore ├── Libs ├── OpenTK.GLControl.dll └── OpenTK.dll ├── README.md ├── RuneGear.sln ├── RuneGear.sln.DotSettings.user ├── RuneGear.v12.suo ├── RuneGear ├── Controls │ ├── CreationButtonsPanel.Designer.cs │ ├── CreationButtonsPanel.cs │ ├── CreationButtonsPanel.resx │ ├── EditorGLViewport.cs │ ├── EditorGLViewport.resx │ ├── EditorStatusBar.Designer.cs │ ├── EditorStatusBar.cs │ ├── ExpandableControl │ │ ├── Designers │ │ │ └── ExpandablePanelDesigner.cs │ │ ├── ExpandableEventArgs.cs │ │ ├── ExpandableFlowLayoutPanel.Designer.cs │ │ ├── ExpandableFlowLayoutPanel.cs │ │ ├── ExpandablePanel.Designer.cs │ │ ├── ExpandablePanel.cs │ │ └── ExpandablePanel.resx │ ├── SolidProperties.Designer.cs │ ├── SolidProperties.cs │ ├── SolidProperties.resx │ ├── SolidSidesCreationPanel.Designer.cs │ ├── SolidSidesCreationPanel.cs │ ├── SolidSidesCreationPanel.resx │ ├── TextureProperties.Designer.cs │ ├── TextureProperties.cs │ ├── TextureProperties.resx │ ├── TextureSelector.Designer.cs │ ├── TextureSelector.cs │ └── TextureSelector.resx ├── FileSystem │ ├── IniParser.cs │ ├── MapExporter.cs │ ├── MapImporter.cs │ ├── RuneMapExporter.cs │ ├── RuneMapImporter.cs │ └── RunegearFileformatErrorException.cs ├── Forms │ ├── AboutDialog.Designer.cs │ ├── AboutDialog.cs │ ├── AboutDialog.resx │ ├── EditorForm.Designer.cs │ ├── EditorForm.cs │ ├── EditorForm.resx │ ├── SettingsDialog.Designer.cs │ ├── SettingsDialog.cs │ ├── SettingsDialog.resx │ ├── SplashForm.Designer.cs │ ├── SplashForm.cs │ ├── SplashForm.resx │ ├── TextureBrowserDialog.Designer.cs │ ├── TextureBrowserDialog.cs │ └── TextureBrowserDialog.resx ├── General │ ├── Camera │ │ ├── BaseViewportCamera.cs │ │ ├── OrthoCamera.cs │ │ └── PerspCamera.cs │ ├── EditorSettings.cs │ ├── IEditorController.cs │ ├── SceneDocument.cs │ ├── TextureCollection.cs │ ├── TextureItem.cs │ └── Viewport │ │ ├── BaseViewport.cs │ │ ├── OrthoViewport.cs │ │ └── PerspViewport.cs ├── Geometry │ ├── AABB.cs │ ├── Line.cs │ ├── Plane.cs │ └── Ray.cs ├── Graphics │ ├── Buffers │ │ └── VertexBuffer.cs │ ├── Graphics.cs │ ├── Shaders │ │ ├── ColorShader.cs │ │ ├── LitColorShader.cs │ │ ├── LitTextureShader.cs │ │ └── ShaderProgram.cs │ └── Textures │ │ ├── Texture2D.cs │ │ └── TextureHelper.cs ├── MapObjects │ ├── CustomOperation.cs │ ├── IMapObjectFactory.cs │ ├── IMapObjectOperation.cs │ ├── MapObject.cs │ ├── MapObjectGroup.cs │ ├── Operations │ │ ├── HitOperation.cs │ │ ├── ResizeTransformation.cs │ │ ├── RotateTransformation.cs │ │ ├── SkewTransformation.cs │ │ └── TranslateOperation.cs │ ├── RubberBand.cs │ └── SolidMapObject │ │ ├── Creation │ │ ├── BoxSolidCreator.cs │ │ ├── ConeSolidCreator.cs │ │ ├── CylinderSolidCreator.cs │ │ ├── SolidCreator.cs │ │ ├── SolidFactory.cs │ │ └── WedgeSolidCreator.cs │ │ ├── Operations │ │ ├── SolidFaceHitOperation.cs │ │ └── SolidRenderOperation.cs │ │ ├── Solid.cs │ │ ├── SolidFace.cs │ │ ├── SolidIndex.cs │ │ ├── SolidVertex.cs │ │ └── TextureMapping.cs ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── folder_icon.png │ ├── icon.ico │ ├── nullTexture.png │ ├── rotate.png │ ├── texture_icon.png │ ├── tile_00.png │ ├── tile_01.png │ ├── tile_02.png │ ├── tile_03.png │ ├── tile_04.png │ ├── tile_05.png │ └── tile_06.png ├── RuneGear.csproj ├── RuneGear.csproj.user ├── RuneGear_old.csproj ├── Tools │ ├── BaseTool.cs │ ├── SolidFaceTool.cs │ ├── SolidManipulationTool.cs │ └── SolidVertexTool.cs └── Utilities │ ├── Extensions │ ├── ColorExtensions.cs │ └── MathExtensions.cs │ ├── GeneralUtility.cs │ └── SolidGrabHandles.cs ├── resources ├── HAMMERHEAD.otf ├── Textures │ ├── Cartoon │ │ ├── floor01.png │ │ ├── floor02.png │ │ ├── floor03.png │ │ ├── floor04.png │ │ ├── rocks01.png │ │ ├── roof01.png │ │ ├── wall01.png │ │ └── wall02.png │ ├── Prototype │ │ ├── tile_00.png │ │ ├── tile_01.png │ │ ├── tile_02.png │ │ ├── tile_03.png │ │ ├── tile_04.png │ │ ├── tile_05.png │ │ └── tile_06.png │ └── Special │ │ └── nullTexture.png ├── alignBottom.png ├── alignLeft.png ├── alignRight.png ├── alignTop.png ├── arrow_redo.png ├── arrow_undo.png ├── brush_box.png ├── brush_cone.png ├── brush_cylinder.png ├── brush_solid.png ├── brush_textured.png ├── brush_textured_lighted.png ├── brush_wedge.png ├── brush_wireframe.png ├── cogwheel.png ├── copy.png ├── csg_carve.png ├── csg_extrude.png ├── csg_hollow.png ├── csg_slice.png ├── cut.png ├── flipHorizontal.png ├── flipVertical.png ├── folder_icon.png ├── group.png ├── icon.ico ├── lock.png ├── new.png ├── open.png ├── paste.png ├── rotate.png ├── save.png ├── selection_brush.png ├── selection_face.png ├── settings.png ├── splashRunegear.pdn ├── splashabout.png ├── texture_icon.png ├── ungroup.png └── vertexMode.png └── runegear_old.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/.gitignore -------------------------------------------------------------------------------- /Libs/OpenTK.GLControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/Libs/OpenTK.GLControl.dll -------------------------------------------------------------------------------- /Libs/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/Libs/OpenTK.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/README.md -------------------------------------------------------------------------------- /RuneGear.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear.sln -------------------------------------------------------------------------------- /RuneGear.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear.sln.DotSettings.user -------------------------------------------------------------------------------- /RuneGear.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear.v12.suo -------------------------------------------------------------------------------- /RuneGear/Controls/CreationButtonsPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/CreationButtonsPanel.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Controls/CreationButtonsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/CreationButtonsPanel.cs -------------------------------------------------------------------------------- /RuneGear/Controls/CreationButtonsPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/CreationButtonsPanel.resx -------------------------------------------------------------------------------- /RuneGear/Controls/EditorGLViewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/EditorGLViewport.cs -------------------------------------------------------------------------------- /RuneGear/Controls/EditorGLViewport.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/EditorGLViewport.resx -------------------------------------------------------------------------------- /RuneGear/Controls/EditorStatusBar.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/EditorStatusBar.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Controls/EditorStatusBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/EditorStatusBar.cs -------------------------------------------------------------------------------- /RuneGear/Controls/ExpandableControl/Designers/ExpandablePanelDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/ExpandableControl/Designers/ExpandablePanelDesigner.cs -------------------------------------------------------------------------------- /RuneGear/Controls/ExpandableControl/ExpandableEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/ExpandableControl/ExpandableEventArgs.cs -------------------------------------------------------------------------------- /RuneGear/Controls/ExpandableControl/ExpandableFlowLayoutPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/ExpandableControl/ExpandableFlowLayoutPanel.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Controls/ExpandableControl/ExpandableFlowLayoutPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/ExpandableControl/ExpandableFlowLayoutPanel.cs -------------------------------------------------------------------------------- /RuneGear/Controls/ExpandableControl/ExpandablePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/ExpandableControl/ExpandablePanel.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Controls/ExpandableControl/ExpandablePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/ExpandableControl/ExpandablePanel.cs -------------------------------------------------------------------------------- /RuneGear/Controls/ExpandableControl/ExpandablePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/ExpandableControl/ExpandablePanel.resx -------------------------------------------------------------------------------- /RuneGear/Controls/SolidProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/SolidProperties.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Controls/SolidProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/SolidProperties.cs -------------------------------------------------------------------------------- /RuneGear/Controls/SolidProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/SolidProperties.resx -------------------------------------------------------------------------------- /RuneGear/Controls/SolidSidesCreationPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/SolidSidesCreationPanel.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Controls/SolidSidesCreationPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/SolidSidesCreationPanel.cs -------------------------------------------------------------------------------- /RuneGear/Controls/SolidSidesCreationPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/SolidSidesCreationPanel.resx -------------------------------------------------------------------------------- /RuneGear/Controls/TextureProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/TextureProperties.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Controls/TextureProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/TextureProperties.cs -------------------------------------------------------------------------------- /RuneGear/Controls/TextureProperties.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/TextureProperties.resx -------------------------------------------------------------------------------- /RuneGear/Controls/TextureSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/TextureSelector.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Controls/TextureSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/TextureSelector.cs -------------------------------------------------------------------------------- /RuneGear/Controls/TextureSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Controls/TextureSelector.resx -------------------------------------------------------------------------------- /RuneGear/FileSystem/IniParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/FileSystem/IniParser.cs -------------------------------------------------------------------------------- /RuneGear/FileSystem/MapExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/FileSystem/MapExporter.cs -------------------------------------------------------------------------------- /RuneGear/FileSystem/MapImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/FileSystem/MapImporter.cs -------------------------------------------------------------------------------- /RuneGear/FileSystem/RuneMapExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/FileSystem/RuneMapExporter.cs -------------------------------------------------------------------------------- /RuneGear/FileSystem/RuneMapImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/FileSystem/RuneMapImporter.cs -------------------------------------------------------------------------------- /RuneGear/FileSystem/RunegearFileformatErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/FileSystem/RunegearFileformatErrorException.cs -------------------------------------------------------------------------------- /RuneGear/Forms/AboutDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/AboutDialog.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Forms/AboutDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/AboutDialog.cs -------------------------------------------------------------------------------- /RuneGear/Forms/AboutDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/AboutDialog.resx -------------------------------------------------------------------------------- /RuneGear/Forms/EditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/EditorForm.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Forms/EditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/EditorForm.cs -------------------------------------------------------------------------------- /RuneGear/Forms/EditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/EditorForm.resx -------------------------------------------------------------------------------- /RuneGear/Forms/SettingsDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/SettingsDialog.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Forms/SettingsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/SettingsDialog.cs -------------------------------------------------------------------------------- /RuneGear/Forms/SettingsDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/SettingsDialog.resx -------------------------------------------------------------------------------- /RuneGear/Forms/SplashForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/SplashForm.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Forms/SplashForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/SplashForm.cs -------------------------------------------------------------------------------- /RuneGear/Forms/SplashForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/SplashForm.resx -------------------------------------------------------------------------------- /RuneGear/Forms/TextureBrowserDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/TextureBrowserDialog.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Forms/TextureBrowserDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/TextureBrowserDialog.cs -------------------------------------------------------------------------------- /RuneGear/Forms/TextureBrowserDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Forms/TextureBrowserDialog.resx -------------------------------------------------------------------------------- /RuneGear/General/Camera/BaseViewportCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/General/Camera/BaseViewportCamera.cs -------------------------------------------------------------------------------- /RuneGear/General/Camera/OrthoCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/General/Camera/OrthoCamera.cs -------------------------------------------------------------------------------- /RuneGear/General/Camera/PerspCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/General/Camera/PerspCamera.cs -------------------------------------------------------------------------------- /RuneGear/General/EditorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/General/EditorSettings.cs -------------------------------------------------------------------------------- /RuneGear/General/IEditorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/General/IEditorController.cs -------------------------------------------------------------------------------- /RuneGear/General/SceneDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/General/SceneDocument.cs -------------------------------------------------------------------------------- /RuneGear/General/TextureCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/General/TextureCollection.cs -------------------------------------------------------------------------------- /RuneGear/General/TextureItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/General/TextureItem.cs -------------------------------------------------------------------------------- /RuneGear/General/Viewport/BaseViewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/General/Viewport/BaseViewport.cs -------------------------------------------------------------------------------- /RuneGear/General/Viewport/OrthoViewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/General/Viewport/OrthoViewport.cs -------------------------------------------------------------------------------- /RuneGear/General/Viewport/PerspViewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/General/Viewport/PerspViewport.cs -------------------------------------------------------------------------------- /RuneGear/Geometry/AABB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Geometry/AABB.cs -------------------------------------------------------------------------------- /RuneGear/Geometry/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Geometry/Line.cs -------------------------------------------------------------------------------- /RuneGear/Geometry/Plane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Geometry/Plane.cs -------------------------------------------------------------------------------- /RuneGear/Geometry/Ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Geometry/Ray.cs -------------------------------------------------------------------------------- /RuneGear/Graphics/Buffers/VertexBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Graphics/Buffers/VertexBuffer.cs -------------------------------------------------------------------------------- /RuneGear/Graphics/Graphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Graphics/Graphics.cs -------------------------------------------------------------------------------- /RuneGear/Graphics/Shaders/ColorShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Graphics/Shaders/ColorShader.cs -------------------------------------------------------------------------------- /RuneGear/Graphics/Shaders/LitColorShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Graphics/Shaders/LitColorShader.cs -------------------------------------------------------------------------------- /RuneGear/Graphics/Shaders/LitTextureShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Graphics/Shaders/LitTextureShader.cs -------------------------------------------------------------------------------- /RuneGear/Graphics/Shaders/ShaderProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Graphics/Shaders/ShaderProgram.cs -------------------------------------------------------------------------------- /RuneGear/Graphics/Textures/Texture2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Graphics/Textures/Texture2D.cs -------------------------------------------------------------------------------- /RuneGear/Graphics/Textures/TextureHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Graphics/Textures/TextureHelper.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/CustomOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/CustomOperation.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/IMapObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/IMapObjectFactory.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/IMapObjectOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/IMapObjectOperation.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/MapObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/MapObject.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/MapObjectGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/MapObjectGroup.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/Operations/HitOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/Operations/HitOperation.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/Operations/ResizeTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/Operations/ResizeTransformation.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/Operations/RotateTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/Operations/RotateTransformation.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/Operations/SkewTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/Operations/SkewTransformation.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/Operations/TranslateOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/Operations/TranslateOperation.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/RubberBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/RubberBand.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/Creation/BoxSolidCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/Creation/BoxSolidCreator.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/Creation/ConeSolidCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/Creation/ConeSolidCreator.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/Creation/CylinderSolidCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/Creation/CylinderSolidCreator.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/Creation/SolidCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/Creation/SolidCreator.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/Creation/SolidFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/Creation/SolidFactory.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/Creation/WedgeSolidCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/Creation/WedgeSolidCreator.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/Operations/SolidFaceHitOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/Operations/SolidFaceHitOperation.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/Operations/SolidRenderOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/Operations/SolidRenderOperation.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/Solid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/Solid.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/SolidFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/SolidFace.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/SolidIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/SolidIndex.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/SolidVertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/SolidVertex.cs -------------------------------------------------------------------------------- /RuneGear/MapObjects/SolidMapObject/TextureMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/MapObjects/SolidMapObject/TextureMapping.cs -------------------------------------------------------------------------------- /RuneGear/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Program.cs -------------------------------------------------------------------------------- /RuneGear/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Properties/Resources.resx -------------------------------------------------------------------------------- /RuneGear/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RuneGear/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Properties/Settings.settings -------------------------------------------------------------------------------- /RuneGear/Resources/folder_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/folder_icon.png -------------------------------------------------------------------------------- /RuneGear/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/icon.ico -------------------------------------------------------------------------------- /RuneGear/Resources/nullTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/nullTexture.png -------------------------------------------------------------------------------- /RuneGear/Resources/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/rotate.png -------------------------------------------------------------------------------- /RuneGear/Resources/texture_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/texture_icon.png -------------------------------------------------------------------------------- /RuneGear/Resources/tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/tile_00.png -------------------------------------------------------------------------------- /RuneGear/Resources/tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/tile_01.png -------------------------------------------------------------------------------- /RuneGear/Resources/tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/tile_02.png -------------------------------------------------------------------------------- /RuneGear/Resources/tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/tile_03.png -------------------------------------------------------------------------------- /RuneGear/Resources/tile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/tile_04.png -------------------------------------------------------------------------------- /RuneGear/Resources/tile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/tile_05.png -------------------------------------------------------------------------------- /RuneGear/Resources/tile_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Resources/tile_06.png -------------------------------------------------------------------------------- /RuneGear/RuneGear.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/RuneGear.csproj -------------------------------------------------------------------------------- /RuneGear/RuneGear.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/RuneGear.csproj.user -------------------------------------------------------------------------------- /RuneGear/RuneGear_old.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/RuneGear_old.csproj -------------------------------------------------------------------------------- /RuneGear/Tools/BaseTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Tools/BaseTool.cs -------------------------------------------------------------------------------- /RuneGear/Tools/SolidFaceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Tools/SolidFaceTool.cs -------------------------------------------------------------------------------- /RuneGear/Tools/SolidManipulationTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Tools/SolidManipulationTool.cs -------------------------------------------------------------------------------- /RuneGear/Tools/SolidVertexTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Tools/SolidVertexTool.cs -------------------------------------------------------------------------------- /RuneGear/Utilities/Extensions/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Utilities/Extensions/ColorExtensions.cs -------------------------------------------------------------------------------- /RuneGear/Utilities/Extensions/MathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Utilities/Extensions/MathExtensions.cs -------------------------------------------------------------------------------- /RuneGear/Utilities/GeneralUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Utilities/GeneralUtility.cs -------------------------------------------------------------------------------- /RuneGear/Utilities/SolidGrabHandles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/RuneGear/Utilities/SolidGrabHandles.cs -------------------------------------------------------------------------------- /resources/HAMMERHEAD.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/HAMMERHEAD.otf -------------------------------------------------------------------------------- /resources/Textures/Cartoon/floor01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Cartoon/floor01.png -------------------------------------------------------------------------------- /resources/Textures/Cartoon/floor02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Cartoon/floor02.png -------------------------------------------------------------------------------- /resources/Textures/Cartoon/floor03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Cartoon/floor03.png -------------------------------------------------------------------------------- /resources/Textures/Cartoon/floor04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Cartoon/floor04.png -------------------------------------------------------------------------------- /resources/Textures/Cartoon/rocks01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Cartoon/rocks01.png -------------------------------------------------------------------------------- /resources/Textures/Cartoon/roof01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Cartoon/roof01.png -------------------------------------------------------------------------------- /resources/Textures/Cartoon/wall01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Cartoon/wall01.png -------------------------------------------------------------------------------- /resources/Textures/Cartoon/wall02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Cartoon/wall02.png -------------------------------------------------------------------------------- /resources/Textures/Prototype/tile_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Prototype/tile_00.png -------------------------------------------------------------------------------- /resources/Textures/Prototype/tile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Prototype/tile_01.png -------------------------------------------------------------------------------- /resources/Textures/Prototype/tile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Prototype/tile_02.png -------------------------------------------------------------------------------- /resources/Textures/Prototype/tile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Prototype/tile_03.png -------------------------------------------------------------------------------- /resources/Textures/Prototype/tile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Prototype/tile_04.png -------------------------------------------------------------------------------- /resources/Textures/Prototype/tile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Prototype/tile_05.png -------------------------------------------------------------------------------- /resources/Textures/Prototype/tile_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Prototype/tile_06.png -------------------------------------------------------------------------------- /resources/Textures/Special/nullTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/Textures/Special/nullTexture.png -------------------------------------------------------------------------------- /resources/alignBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/alignBottom.png -------------------------------------------------------------------------------- /resources/alignLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/alignLeft.png -------------------------------------------------------------------------------- /resources/alignRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/alignRight.png -------------------------------------------------------------------------------- /resources/alignTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/alignTop.png -------------------------------------------------------------------------------- /resources/arrow_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/arrow_redo.png -------------------------------------------------------------------------------- /resources/arrow_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/arrow_undo.png -------------------------------------------------------------------------------- /resources/brush_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/brush_box.png -------------------------------------------------------------------------------- /resources/brush_cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/brush_cone.png -------------------------------------------------------------------------------- /resources/brush_cylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/brush_cylinder.png -------------------------------------------------------------------------------- /resources/brush_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/brush_solid.png -------------------------------------------------------------------------------- /resources/brush_textured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/brush_textured.png -------------------------------------------------------------------------------- /resources/brush_textured_lighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/brush_textured_lighted.png -------------------------------------------------------------------------------- /resources/brush_wedge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/brush_wedge.png -------------------------------------------------------------------------------- /resources/brush_wireframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/brush_wireframe.png -------------------------------------------------------------------------------- /resources/cogwheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/cogwheel.png -------------------------------------------------------------------------------- /resources/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/copy.png -------------------------------------------------------------------------------- /resources/csg_carve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/csg_carve.png -------------------------------------------------------------------------------- /resources/csg_extrude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/csg_extrude.png -------------------------------------------------------------------------------- /resources/csg_hollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/csg_hollow.png -------------------------------------------------------------------------------- /resources/csg_slice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/csg_slice.png -------------------------------------------------------------------------------- /resources/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/cut.png -------------------------------------------------------------------------------- /resources/flipHorizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/flipHorizontal.png -------------------------------------------------------------------------------- /resources/flipVertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/flipVertical.png -------------------------------------------------------------------------------- /resources/folder_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/folder_icon.png -------------------------------------------------------------------------------- /resources/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/group.png -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/lock.png -------------------------------------------------------------------------------- /resources/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/new.png -------------------------------------------------------------------------------- /resources/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/open.png -------------------------------------------------------------------------------- /resources/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/paste.png -------------------------------------------------------------------------------- /resources/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/rotate.png -------------------------------------------------------------------------------- /resources/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/save.png -------------------------------------------------------------------------------- /resources/selection_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/selection_brush.png -------------------------------------------------------------------------------- /resources/selection_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/selection_face.png -------------------------------------------------------------------------------- /resources/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/settings.png -------------------------------------------------------------------------------- /resources/splashRunegear.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/splashRunegear.pdn -------------------------------------------------------------------------------- /resources/splashabout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/splashabout.png -------------------------------------------------------------------------------- /resources/texture_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/texture_icon.png -------------------------------------------------------------------------------- /resources/ungroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/ungroup.png -------------------------------------------------------------------------------- /resources/vertexMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/resources/vertexMode.png -------------------------------------------------------------------------------- /runegear_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkWilds/Runegear/HEAD/runegear_old.png --------------------------------------------------------------------------------