├── .gitignore ├── README ├── lib ├── FarseerPhysicsXNA.dll ├── FarseerPhysicsXNA.pdb ├── Krypton.dll ├── Krypton.pdb └── Ookii.Dialogs.dll └── src ├── .gitignore ├── CustomDictionary.xml ├── EnumExtensions.cs ├── ExtensionMethods.cs ├── Extensions.cs ├── Gleed2D.Core.FxCop ├── Gleed2D.Core ├── .gitignore ├── Behaviour │ ├── BehaviourCollection.cs │ ├── IBehaviour.cs │ ├── TweenEndHandler.cs │ └── TweeningFunction.cs ├── BehaviourPropertiesWrapper.cs ├── Camera.cs ├── Command.cs ├── CommandEndedArgs.cs ├── CommandType.cs ├── Constants.cs ├── ContentRootChanged.cs ├── Controls │ ├── AssetsControl.Designer.cs │ ├── AssetsControl.cs │ ├── AssetsControl.resx │ ├── CustomPropertiesGridControl.Designer.cs │ ├── CustomPropertiesGridControl.cs │ ├── CustomPropertiesGridControl.resx │ ├── DefaultCategoryTabPage.cs │ ├── DraggingContext.cs │ ├── GlyphService.cs │ ├── HandleDraggingOfAssets.cs │ ├── ICategoryTabPage.cs │ ├── ItemSelectorControl.Designer.cs │ ├── ItemSelectorControl.cs │ ├── ItemSelectorControl.resx │ ├── LevelExplorerControl.Designer.cs │ ├── LevelExplorerControl.cs │ ├── LevelExplorerControl.resx │ ├── PluginDescriptionControl.cs │ ├── SimpleSite.cs │ └── TexturePickedEventArgs.cs ├── ConvertOldFileFormats.cs ├── CustomPropertyDescriptor.cs ├── CustomUITypeEditors │ ├── LinkedItemUiTypeEditor.cs │ ├── PathToFileConverter.cs │ ├── PathToFileUiTypeEditor.cs │ ├── PathToFolderConverter.cs │ ├── PathToFolderUiTypeEditor.cs │ ├── PathToFolderUsingStringUiTypeEditor.cs │ ├── Vector2EditorControl.cs │ ├── Vector2UITypeEditor.cs │ ├── Vector2UITypeEditor.resx │ └── XNAColorUITypeEditors.cs ├── DictionaryPropertyDescriptor.cs ├── Disk.cs ├── DiskEntity.cs ├── DragEventType.cs ├── DraggingTextureEventArgs.cs ├── Drawing.cs ├── EdgePosition.cs ├── EntityChosenEventArgs.cs ├── EntityCreation.cs ├── EntityCreationProperties.cs ├── EntityEditedEventArgs.cs ├── EventHub.cs ├── Forms │ ├── AddCustomPropertyForm.Designer.cs │ ├── AddCustomPropertyForm.cs │ ├── AddCustomPropertyForm.resx │ ├── AddLayerDialog.Designer.cs │ ├── AddLayerDialog.cs │ └── AddLayerDialog.resx ├── Gdi.cs ├── GetAssemblyInformation.cs ├── Gleed2D.Core.csproj ├── GleedRenderer.cs ├── HandleKeyboardCommands.cs ├── HandleUserActions.cs ├── Helper.cs ├── IBehaviourPlugin.cs ├── ICanBePersisted.cs ├── ICanvas.cs ├── IConstants.cs ├── IDisk.cs ├── IDrawing.cs ├── IEditorPlugin.cs ├── IEntityCreationProperties.cs ├── IEventHub.cs ├── IExtensibility.cs ├── IGame.cs ├── IGetAssemblyInformation.cs ├── IGleedRenderer.cs ├── IHandleDragDrop.cs ├── IHandleKeyboardCommands.cs ├── IHandleUserActions.cs ├── IImageRepository.cs ├── ILoadImages.cs ├── IMainForm.cs ├── IMemento.cs ├── IMenuItems.cs ├── IModel.cs ├── IPlugin.cs ├── IPluginGroup.cs ├── IRenderer.cs ├── IShapeProvider.cs ├── ISubscriber.cs ├── ITextureStore.cs ├── ITreeItem.cs ├── ImageProperties.cs ├── ImageRepository.cs ├── Images.cs ├── InternalPoint.cs ├── IoC.cs ├── ItemEditor.cs ├── ItemEditorMode.cs ├── ItemPropertiesWrapper.ICustomTypeDescriptor.cs ├── ItemsToRender.cs ├── KeyboardStatus.cs ├── LambdaDrivenDragDropHandler.cs ├── LayerEditor.cs ├── Legacy │ └── LegacyModel.cs ├── LegacyEditorInfo.cs ├── LinkedItemTypeConverter.cs ├── LoadImages.cs ├── Logger.cs ├── Mememto.cs ├── Model.cs ├── ModelChangedEventArgs.cs ├── ModelEventHub.cs ├── ModelUnloadingEventArgs.cs ├── MouseStatus.cs ├── NewModelLoaded.cs ├── PathToFile.cs ├── PrimitiveType.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyCustomisation.cs ├── RendererParams.cs ├── Resource1.Designer.cs ├── Resource1.resx ├── Resources │ ├── folder2.png.png │ ├── folder2.png.png_ │ ├── icon_layer_active.png │ ├── icon_layer_nonactive.png │ └── icon_level.png ├── SelectedEditors.cs ├── ShapeDragDropHandler.cs ├── SnapPoint.cs ├── TextureOriginMethodEnum.cs ├── TextureStore.cs ├── Triangulator2D.cs ├── UiAction.cs ├── UserActionInEditor.cs ├── UserActions │ ├── AddCustomPropertyAction.cs │ ├── AddEditorToSelectionAction.cs │ ├── AddNewLayerAction.cs │ ├── AttachBehaviourAction.cs │ ├── CenterViewAction.cs │ ├── CopySelectedEditorsToLayerAction.cs │ ├── DeleteActiveLayerAction.cs │ ├── DeleteSelectedEditorsAction.cs │ ├── DuplicateLayerAction.cs │ ├── IUserAction.cs │ ├── MoveItemDownAction.cs │ ├── MoveItemUpAction.cs │ ├── MoveSelectedEditorsToLayerAction.cs │ ├── RenameInPlaceAction.cs │ ├── SelectEditorAction.cs │ ├── SelectLayerAction.cs │ └── SelectLevelAction.cs ├── ValidationError.cs ├── Vertices.cs └── packages.config ├── Gleed2D.InGame.Krypton ├── CircularHullProperties.cs ├── ConvexHullProperties.cs ├── Gleed2D.InGame.Krypton.WinPhone71.csproj ├── Gleed2D.InGame.Krypton.Windows.csproj ├── Gleed2D.InGame.Krypton.XBox.csproj ├── LightProperties.cs ├── Properties │ └── AssemblyInfo.cs ├── RectangularHullProperties.cs └── TexturedHullProperties.cs ├── Gleed2D.InGame ├── .gitignore ├── BehaviourProperties.cs ├── CircleItemProperties.cs ├── CustomProperties.cs ├── CustomProperty.cs ├── Gleed2D.InGame.WinPhone71.csproj ├── Gleed2D.InGame.Windows.csproj ├── Gleed2D.InGame.XBox.csproj ├── IRotatable.cs ├── IScalable.cs ├── Interpolation │ ├── Back.cs │ ├── Bounce.cs │ ├── Circular.cs │ ├── Cubic.cs │ ├── Easing.cs │ ├── Elastic.cs │ ├── Exponential.cs │ ├── Linear.cs │ ├── Quadratic.cs │ ├── Quartic.cs │ ├── Quintic.cs │ ├── Sinusoidal.cs │ ├── TweenCreationSettings.cs │ ├── Tweener.cs │ └── Vector2Tweener.cs ├── InterpolationBehaviourProperties.cs ├── ItemProperties.cs ├── Layer.cs ├── LayerItem.cs ├── LayerProperties.cs ├── Level.cs ├── LevelLoader.cs ├── LevelProperties.cs ├── LinkedItem.cs ├── PathItemProperties.cs ├── PathToFolder.cs ├── PathToFolderChangedEventArgs.cs ├── PositionAnimationBehaviourProperties.cs ├── Properties │ └── AssemblyInfo.cs ├── RectangleItemProperties.cs ├── TextureItemProperties.cs └── TypeLookup.cs ├── Gleed2D.Plugins.Krypton ├── CircularHullEditor.cs ├── CircularHullEditorPlugin.cs ├── ConvexHullEditor.cs ├── ConvexHullEditorPlugin.cs ├── Gleed2D.Plugins.Krypton.csproj ├── ILightingState.cs ├── KryptonEffect.fx ├── KryptonEffect.xnb ├── KryptonPluginGroup.cs ├── LightEditor.cs ├── LightEditorPlugin.cs ├── LightRenderer.cs ├── LightingState.cs ├── PreShapedConvexHullEditor.cs ├── PreShapedConvexHullEditorPlugin.cs ├── Properties │ └── AssemblyInfo.cs ├── RectangularHullEditor.cs ├── RectangularHullEditorPlugin.cs ├── Resource1.Designer.cs ├── Resource1.resx ├── Resources │ ├── circular_hull.png │ ├── convex_hull.png │ ├── icon_circular_hull.png │ ├── icon_convex_hull.png │ ├── icon_light.png │ ├── icon_rectangular_hull.png │ ├── icon_textured_hull.png │ ├── light.png │ ├── rectangular_hull.png │ ├── shaped_hull.png │ └── textured_hull.png ├── ShapeSelectionForm.Designer.cs ├── ShapeSelectionForm.cs ├── ShapeSelectionForm.resx ├── TexturedHullEditor.cs └── packages.config ├── Gleed2D.Plugins ├── BehaviourDragDropHandler.cs ├── CapsuleShapeProvider.cs ├── CircleEditorPlugin.cs ├── CircleItemEditor.cs ├── EllipseShapeProvider.cs ├── FloatAnimationBehaviour.cs ├── FloatAnimationBehaviourPlugin.cs ├── GearShapeProvider.cs ├── Gleed2D.Plugins.csproj ├── PathEditorPlugin.cs ├── PathItemEditor.cs ├── PositionAnimationBehaviour.cs ├── PositionAnimationBehaviourPlugin.cs ├── PrimitivesPluginGroup.cs ├── Properties │ └── AssemblyInfo.cs ├── RectangleEditorPlugin.cs ├── RectangleItemEditor.cs ├── Resource1.Designer.cs ├── Resource1.resx ├── Resources │ ├── float_animation_behaviour_icon.png │ ├── folder2.png.png │ ├── icon_circle_item.png │ ├── icon_path_item.png │ ├── icon_rectangle_item.png │ ├── icon_texture_item.png │ ├── position_animation_behaviour_icon.png │ ├── primitive_circle.png │ ├── primitive_path.png │ ├── primitive_rectangle.png │ ├── scale_animation_behaviour_icon.png │ └── toolbox_texture.png ├── ScaleAnimationBehaviourPlugin.cs ├── ShapeFromTextureProvider.cs ├── TextureCreationProperties.cs ├── TextureDragDropHandler.cs ├── TextureEditorPlugin.cs ├── TextureItemEditor.cs ├── TexturePickerControl.Designer.cs ├── TexturePickerControl.cs ├── TexturePickerControl.resx ├── TextureTabPage.cs └── packages.config ├── Gleed2D.Tests ├── Gleed2D.Tests.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Gleed2D.Ui ├── Canvas.cs ├── Extensibility.cs ├── Forms │ ├── AboutForm.Designer.cs │ ├── AboutForm.cs │ ├── AboutForm.resx │ ├── LinkItemsForm.Designer.cs │ ├── LinkItemsForm.cs │ ├── LinkItemsForm.resx │ ├── MainForm.BackgroundWorker.cs │ ├── MainForm.cs │ ├── MainForm.designer.cs │ ├── MainForm.designer.cs.orig │ ├── MainForm.resx │ ├── MainForm.resx.orig │ ├── MainFormMenuItems.cs │ ├── QuickGuide.Designer.cs │ ├── QuickGuide.cs │ ├── QuickGuide.resx │ ├── SettingsForm.Designer.cs │ ├── SettingsForm.cs │ └── SettingsForm.resx ├── Game.ico ├── GameThumbnail.png ├── Gleed2D.csproj ├── IHandleEditorInput.cs ├── InputHandlerForWhenEditorIdle.cs ├── InputHandlerForWhenMovingOrCopyingItems.cs ├── InputHandlerWhenCreatingTheSelectionRectangle.cs ├── InputHandlerWhenRotatingItems.cs ├── InputHandlerWhenScalingItems.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── Cursors │ │ ├── dragcopy.cur │ │ ├── rotate.cur │ │ └── scale.cur │ ├── Thumbs.db │ ├── circle.png │ ├── folder.png │ ├── primitive_chain.jpg │ ├── primitive_point_light.png │ ├── primitive_spring.jpg │ ├── primitive_start.png │ └── primitive_track.jpg ├── TextureBrush.cs ├── XnaGame.cs ├── app.config ├── gleed2d.csproj.Debug.cachefile └── packages.config ├── Gleed2D_Tool.1.2.dotCover ├── Gleed2D_Tool.sln ├── Gleed2D_Tool.sln.DotSettings ├── Gleed2D_WindowsPhone71Components.sln ├── Gleed2D_XBoxComponents.sln ├── Guard.cs ├── JetBrains.Annotations.cs ├── Level.cs ├── XmlExtensions.cs ├── XmlExtensions2.cs ├── notes.txt ├── packages ├── Castle.Core.2.5.2 │ ├── Castle.Core.2.5.2.nupkg │ └── lib │ │ ├── ASL - Apache Software Foundation License.txt │ │ ├── BreakingChanges.txt │ │ ├── Changes.txt │ │ ├── Committers.txt │ │ ├── NET35 │ │ ├── Castle.Core.dll │ │ └── Castle.Core.xml │ │ ├── NET40ClientProfile │ │ ├── Castle.Core.dll │ │ └── Castle.Core.xml │ │ ├── SL3 │ │ ├── Castle.Core.dll │ │ └── Castle.Core.xml │ │ ├── SL4 │ │ ├── Castle.Core.dll │ │ └── Castle.Core.xml │ │ └── releaseNotes.txt ├── FakeItEasy.1.7.4166.27 │ ├── FakeItEasy.1.7.4166.27.nupkg │ └── lib │ │ ├── NET40 │ │ ├── FakeItEasy.dll │ │ └── FakeItEasy.xml │ │ └── SL4 │ │ └── FakeItEasy-SL.dll ├── Should.1.1.12.0 │ ├── Should.1.1.12.0.nupkg │ └── lib │ │ └── Should.dll ├── repositories.config ├── structuremap.2.6.2 │ ├── lib │ │ ├── StructureMap.XML │ │ ├── StructureMap.dll │ │ └── StructureMap.pdb │ └── structuremap.2.6.2.nupkg └── xunit.1.8.0.1545 │ ├── lib │ ├── xunit.dll │ ├── xunit.dll.tdnet │ ├── xunit.runner.tdnet.dll │ ├── xunit.runner.utility.dll │ └── xunit.xml │ └── xunit.1.8.0.1545.nupkg └── todo.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/README -------------------------------------------------------------------------------- /lib/FarseerPhysicsXNA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/lib/FarseerPhysicsXNA.dll -------------------------------------------------------------------------------- /lib/FarseerPhysicsXNA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/lib/FarseerPhysicsXNA.pdb -------------------------------------------------------------------------------- /lib/Krypton.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/lib/Krypton.dll -------------------------------------------------------------------------------- /lib/Krypton.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/lib/Krypton.pdb -------------------------------------------------------------------------------- /lib/Ookii.Dialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/lib/Ookii.Dialogs.dll -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.suo 3 | *.user -------------------------------------------------------------------------------- /src/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/CustomDictionary.xml -------------------------------------------------------------------------------- /src/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/EnumExtensions.cs -------------------------------------------------------------------------------- /src/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/ExtensionMethods.cs -------------------------------------------------------------------------------- /src/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Extensions.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core.FxCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core.FxCop -------------------------------------------------------------------------------- /src/Gleed2D.Core/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.user -------------------------------------------------------------------------------- /src/Gleed2D.Core/Behaviour/BehaviourCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Behaviour/BehaviourCollection.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Behaviour/IBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Behaviour/IBehaviour.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Behaviour/TweenEndHandler.cs: -------------------------------------------------------------------------------- 1 | namespace Gleed2D.Core.Behaviour 2 | { 3 | public delegate void TweenEndHandler( ) ; 4 | } -------------------------------------------------------------------------------- /src/Gleed2D.Core/Behaviour/TweeningFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Behaviour/TweeningFunction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/BehaviourPropertiesWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/BehaviourPropertiesWrapper.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Camera.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Command.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CommandEndedArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CommandEndedArgs.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CommandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CommandType.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Constants.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ContentRootChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ContentRootChanged.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/AssetsControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/AssetsControl.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/AssetsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/AssetsControl.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/AssetsControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/AssetsControl.resx -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/CustomPropertiesGridControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/CustomPropertiesGridControl.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/CustomPropertiesGridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/CustomPropertiesGridControl.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/CustomPropertiesGridControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/CustomPropertiesGridControl.resx -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/DefaultCategoryTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/DefaultCategoryTabPage.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/DraggingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/DraggingContext.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/GlyphService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/GlyphService.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/HandleDraggingOfAssets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/HandleDraggingOfAssets.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/ICategoryTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/ICategoryTabPage.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/ItemSelectorControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/ItemSelectorControl.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/ItemSelectorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/ItemSelectorControl.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/ItemSelectorControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/ItemSelectorControl.resx -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/LevelExplorerControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/LevelExplorerControl.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/LevelExplorerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/LevelExplorerControl.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/LevelExplorerControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/LevelExplorerControl.resx -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/PluginDescriptionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/PluginDescriptionControl.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/SimpleSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/SimpleSite.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Controls/TexturePickedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Controls/TexturePickedEventArgs.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ConvertOldFileFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ConvertOldFileFormats.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CustomPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CustomPropertyDescriptor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CustomUITypeEditors/LinkedItemUiTypeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CustomUITypeEditors/LinkedItemUiTypeEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CustomUITypeEditors/PathToFileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CustomUITypeEditors/PathToFileConverter.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CustomUITypeEditors/PathToFileUiTypeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CustomUITypeEditors/PathToFileUiTypeEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CustomUITypeEditors/PathToFolderConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CustomUITypeEditors/PathToFolderConverter.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CustomUITypeEditors/PathToFolderUiTypeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CustomUITypeEditors/PathToFolderUiTypeEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CustomUITypeEditors/PathToFolderUsingStringUiTypeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CustomUITypeEditors/PathToFolderUsingStringUiTypeEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CustomUITypeEditors/Vector2EditorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CustomUITypeEditors/Vector2EditorControl.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CustomUITypeEditors/Vector2UITypeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CustomUITypeEditors/Vector2UITypeEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/CustomUITypeEditors/Vector2UITypeEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CustomUITypeEditors/Vector2UITypeEditor.resx -------------------------------------------------------------------------------- /src/Gleed2D.Core/CustomUITypeEditors/XNAColorUITypeEditors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/CustomUITypeEditors/XNAColorUITypeEditors.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/DictionaryPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/DictionaryPropertyDescriptor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Disk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Disk.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/DiskEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/DiskEntity.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/DragEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/DragEventType.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/DraggingTextureEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/DraggingTextureEventArgs.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Drawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Drawing.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/EdgePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/EdgePosition.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/EntityChosenEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/EntityChosenEventArgs.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/EntityCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/EntityCreation.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/EntityCreationProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/EntityCreationProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/EntityEditedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/EntityEditedEventArgs.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/EventHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/EventHub.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Forms/AddCustomPropertyForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Forms/AddCustomPropertyForm.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Forms/AddCustomPropertyForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Forms/AddCustomPropertyForm.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Forms/AddCustomPropertyForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Forms/AddCustomPropertyForm.resx -------------------------------------------------------------------------------- /src/Gleed2D.Core/Forms/AddLayerDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Forms/AddLayerDialog.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Forms/AddLayerDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Forms/AddLayerDialog.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Forms/AddLayerDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Forms/AddLayerDialog.resx -------------------------------------------------------------------------------- /src/Gleed2D.Core/Gdi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Gdi.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/GetAssemblyInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/GetAssemblyInformation.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Gleed2D.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Gleed2D.Core.csproj -------------------------------------------------------------------------------- /src/Gleed2D.Core/GleedRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/GleedRenderer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/HandleKeyboardCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/HandleKeyboardCommands.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/HandleUserActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/HandleUserActions.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Helper.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IBehaviourPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IBehaviourPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ICanBePersisted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ICanBePersisted.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ICanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ICanvas.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IConstants.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IDisk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IDisk.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IDrawing.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IEditorPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IEntityCreationProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IEntityCreationProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IEventHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IEventHub.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IExtensibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IExtensibility.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IGame.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IGetAssemblyInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IGetAssemblyInformation.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IGleedRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IGleedRenderer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IHandleDragDrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IHandleDragDrop.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IHandleKeyboardCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IHandleKeyboardCommands.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IHandleUserActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IHandleUserActions.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IImageRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IImageRepository.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ILoadImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ILoadImages.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IMainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IMainForm.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IMemento.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IMemento.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IMenuItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IMenuItems.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IModel.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IPluginGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IPluginGroup.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IRenderer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IShapeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IShapeProvider.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ISubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ISubscriber.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ITextureStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ITextureStore.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ITreeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ITreeItem.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ImageProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ImageProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ImageRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ImageRepository.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Images.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/InternalPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/InternalPoint.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/IoC.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ItemEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ItemEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ItemEditorMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ItemEditorMode.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ItemPropertiesWrapper.ICustomTypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ItemPropertiesWrapper.ICustomTypeDescriptor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ItemsToRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ItemsToRender.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/KeyboardStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/KeyboardStatus.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/LambdaDrivenDragDropHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/LambdaDrivenDragDropHandler.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/LayerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/LayerEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Legacy/LegacyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Legacy/LegacyModel.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/LegacyEditorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/LegacyEditorInfo.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/LinkedItemTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/LinkedItemTypeConverter.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/LoadImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/LoadImages.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Logger.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Mememto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Mememto.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Model.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ModelChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ModelChangedEventArgs.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ModelEventHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ModelEventHub.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ModelUnloadingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ModelUnloadingEventArgs.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/MouseStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/MouseStatus.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/NewModelLoaded.cs: -------------------------------------------------------------------------------- 1 | namespace Gleed2D.Core 2 | { 3 | public class NewModelLoaded 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /src/Gleed2D.Core/PathToFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/PathToFile.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/PrimitiveType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/PrimitiveType.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/PropertyCustomisation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/PropertyCustomisation.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/RendererParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/RendererParams.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Resource1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Resource1.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Resource1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Resource1.resx -------------------------------------------------------------------------------- /src/Gleed2D.Core/Resources/folder2.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Resources/folder2.png.png -------------------------------------------------------------------------------- /src/Gleed2D.Core/Resources/folder2.png.png_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Resources/folder2.png.png_ -------------------------------------------------------------------------------- /src/Gleed2D.Core/Resources/icon_layer_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Resources/icon_layer_active.png -------------------------------------------------------------------------------- /src/Gleed2D.Core/Resources/icon_layer_nonactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Resources/icon_layer_nonactive.png -------------------------------------------------------------------------------- /src/Gleed2D.Core/Resources/icon_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Resources/icon_level.png -------------------------------------------------------------------------------- /src/Gleed2D.Core/SelectedEditors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/SelectedEditors.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ShapeDragDropHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ShapeDragDropHandler.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/SnapPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/SnapPoint.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/TextureOriginMethodEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/TextureOriginMethodEnum.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/TextureStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/TextureStore.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Triangulator2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Triangulator2D.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UiAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UiAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActionInEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActionInEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/AddCustomPropertyAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/AddCustomPropertyAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/AddEditorToSelectionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/AddEditorToSelectionAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/AddNewLayerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/AddNewLayerAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/AttachBehaviourAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/AttachBehaviourAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/CenterViewAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/CenterViewAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/CopySelectedEditorsToLayerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/CopySelectedEditorsToLayerAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/DeleteActiveLayerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/DeleteActiveLayerAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/DeleteSelectedEditorsAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/DeleteSelectedEditorsAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/DuplicateLayerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/DuplicateLayerAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/IUserAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/IUserAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/MoveItemDownAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/MoveItemDownAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/MoveItemUpAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/MoveItemUpAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/MoveSelectedEditorsToLayerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/MoveSelectedEditorsToLayerAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/RenameInPlaceAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/RenameInPlaceAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/SelectEditorAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/SelectEditorAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/SelectLayerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/SelectLayerAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/UserActions/SelectLevelAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/UserActions/SelectLevelAction.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/ValidationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/ValidationError.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/Vertices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/Vertices.cs -------------------------------------------------------------------------------- /src/Gleed2D.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Core/packages.config -------------------------------------------------------------------------------- /src/Gleed2D.InGame.Krypton/CircularHullProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame.Krypton/CircularHullProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame.Krypton/ConvexHullProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame.Krypton/ConvexHullProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame.Krypton/Gleed2D.InGame.Krypton.WinPhone71.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame.Krypton/Gleed2D.InGame.Krypton.WinPhone71.csproj -------------------------------------------------------------------------------- /src/Gleed2D.InGame.Krypton/Gleed2D.InGame.Krypton.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame.Krypton/Gleed2D.InGame.Krypton.Windows.csproj -------------------------------------------------------------------------------- /src/Gleed2D.InGame.Krypton/Gleed2D.InGame.Krypton.XBox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame.Krypton/Gleed2D.InGame.Krypton.XBox.csproj -------------------------------------------------------------------------------- /src/Gleed2D.InGame.Krypton/LightProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame.Krypton/LightProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame.Krypton/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame.Krypton/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame.Krypton/RectangularHullProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame.Krypton/RectangularHullProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame.Krypton/TexturedHullProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame.Krypton/TexturedHullProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.user -------------------------------------------------------------------------------- /src/Gleed2D.InGame/BehaviourProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/BehaviourProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/CircleItemProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/CircleItemProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/CustomProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/CustomProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/CustomProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/CustomProperty.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Gleed2D.InGame.WinPhone71.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Gleed2D.InGame.WinPhone71.csproj -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Gleed2D.InGame.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Gleed2D.InGame.Windows.csproj -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Gleed2D.InGame.XBox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Gleed2D.InGame.XBox.csproj -------------------------------------------------------------------------------- /src/Gleed2D.InGame/IRotatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/IRotatable.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/IScalable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/IScalable.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Back.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Back.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Bounce.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Bounce.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Circular.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Circular.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Cubic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Cubic.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Easing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Easing.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Elastic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Elastic.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Exponential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Exponential.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Linear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Linear.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Quadratic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Quadratic.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Quartic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Quartic.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Quintic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Quintic.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Sinusoidal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Sinusoidal.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/TweenCreationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/TweenCreationSettings.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Tweener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Tweener.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Interpolation/Vector2Tweener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Interpolation/Vector2Tweener.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/InterpolationBehaviourProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/InterpolationBehaviourProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/ItemProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/ItemProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Layer.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/LayerItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/LayerItem.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/LayerProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/LayerProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Level.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/LevelLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/LevelLoader.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/LevelProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/LevelProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/LinkedItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/LinkedItem.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/PathItemProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/PathItemProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/PathToFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/PathToFolder.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/PathToFolderChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/PathToFolderChangedEventArgs.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/PositionAnimationBehaviourProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/PositionAnimationBehaviourProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/RectangleItemProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/RectangleItemProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/TextureItemProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/TextureItemProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.InGame/TypeLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.InGame/TypeLookup.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/CircularHullEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/CircularHullEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/CircularHullEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/CircularHullEditorPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/ConvexHullEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/ConvexHullEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/ConvexHullEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/ConvexHullEditorPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Gleed2D.Plugins.Krypton.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Gleed2D.Plugins.Krypton.csproj -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/ILightingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/ILightingState.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/KryptonEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/KryptonEffect.fx -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/KryptonEffect.xnb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/KryptonEffect.xnb -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/KryptonPluginGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/KryptonPluginGroup.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/LightEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/LightEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/LightEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/LightEditorPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/LightRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/LightRenderer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/LightingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/LightingState.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/PreShapedConvexHullEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/PreShapedConvexHullEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/PreShapedConvexHullEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/PreShapedConvexHullEditorPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/RectangularHullEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/RectangularHullEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/RectangularHullEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/RectangularHullEditorPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resource1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resource1.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resource1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resource1.resx -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resources/circular_hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resources/circular_hull.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resources/convex_hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resources/convex_hull.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resources/icon_circular_hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resources/icon_circular_hull.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resources/icon_convex_hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resources/icon_convex_hull.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resources/icon_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resources/icon_light.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resources/icon_rectangular_hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resources/icon_rectangular_hull.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resources/icon_textured_hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resources/icon_textured_hull.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resources/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resources/light.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resources/rectangular_hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resources/rectangular_hull.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resources/shaped_hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resources/shaped_hull.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/Resources/textured_hull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/Resources/textured_hull.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/ShapeSelectionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/ShapeSelectionForm.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/ShapeSelectionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/ShapeSelectionForm.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/ShapeSelectionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/ShapeSelectionForm.resx -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/TexturedHullEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/TexturedHullEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins.Krypton/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins.Krypton/packages.config -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/BehaviourDragDropHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/BehaviourDragDropHandler.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/CapsuleShapeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/CapsuleShapeProvider.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/CircleEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/CircleEditorPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/CircleItemEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/CircleItemEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/EllipseShapeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/EllipseShapeProvider.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/FloatAnimationBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/FloatAnimationBehaviour.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/FloatAnimationBehaviourPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/FloatAnimationBehaviourPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/GearShapeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/GearShapeProvider.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Gleed2D.Plugins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Gleed2D.Plugins.csproj -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/PathEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/PathEditorPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/PathItemEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/PathItemEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/PositionAnimationBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/PositionAnimationBehaviour.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/PositionAnimationBehaviourPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/PositionAnimationBehaviourPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/PrimitivesPluginGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/PrimitivesPluginGroup.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/RectangleEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/RectangleEditorPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/RectangleItemEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/RectangleItemEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resource1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resource1.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resource1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resource1.resx -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/float_animation_behaviour_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/float_animation_behaviour_icon.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/folder2.png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/folder2.png.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/icon_circle_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/icon_circle_item.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/icon_path_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/icon_path_item.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/icon_rectangle_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/icon_rectangle_item.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/icon_texture_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/icon_texture_item.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/position_animation_behaviour_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/position_animation_behaviour_icon.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/primitive_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/primitive_circle.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/primitive_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/primitive_path.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/primitive_rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/primitive_rectangle.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/scale_animation_behaviour_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/scale_animation_behaviour_icon.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/Resources/toolbox_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/Resources/toolbox_texture.png -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/ScaleAnimationBehaviourPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/ScaleAnimationBehaviourPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/ShapeFromTextureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/ShapeFromTextureProvider.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/TextureCreationProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/TextureCreationProperties.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/TextureDragDropHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/TextureDragDropHandler.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/TextureEditorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/TextureEditorPlugin.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/TextureItemEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/TextureItemEditor.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/TexturePickerControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/TexturePickerControl.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/TexturePickerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/TexturePickerControl.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/TexturePickerControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/TexturePickerControl.resx -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/TextureTabPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/TextureTabPage.cs -------------------------------------------------------------------------------- /src/Gleed2D.Plugins/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Plugins/packages.config -------------------------------------------------------------------------------- /src/Gleed2D.Tests/Gleed2D.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Tests/Gleed2D.Tests.csproj -------------------------------------------------------------------------------- /src/Gleed2D.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Gleed2D.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Tests/packages.config -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Canvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Canvas.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Extensibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Extensibility.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/AboutForm.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/AboutForm.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/AboutForm.resx -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/LinkItemsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/LinkItemsForm.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/LinkItemsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/LinkItemsForm.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/LinkItemsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/LinkItemsForm.resx -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/MainForm.BackgroundWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/MainForm.BackgroundWorker.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/MainForm.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/MainForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/MainForm.designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/MainForm.designer.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/MainForm.designer.cs.orig -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/MainForm.resx -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/MainForm.resx.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/MainForm.resx.orig -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/MainFormMenuItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/MainFormMenuItems.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/QuickGuide.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/QuickGuide.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/QuickGuide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/QuickGuide.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/QuickGuide.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/QuickGuide.resx -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/SettingsForm.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Forms/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Forms/SettingsForm.resx -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Game.ico -------------------------------------------------------------------------------- /src/Gleed2D.Ui/GameThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/GameThumbnail.png -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Gleed2D.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Gleed2D.csproj -------------------------------------------------------------------------------- /src/Gleed2D.Ui/IHandleEditorInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/IHandleEditorInput.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/InputHandlerForWhenEditorIdle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/InputHandlerForWhenEditorIdle.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/InputHandlerForWhenMovingOrCopyingItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/InputHandlerForWhenMovingOrCopyingItems.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/InputHandlerWhenCreatingTheSelectionRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/InputHandlerWhenCreatingTheSelectionRectangle.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/InputHandlerWhenRotatingItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/InputHandlerWhenRotatingItems.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/InputHandlerWhenScalingItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/InputHandlerWhenScalingItems.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Program.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Resources/Cursors/dragcopy.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Resources/Cursors/dragcopy.cur -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Resources/Cursors/rotate.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Resources/Cursors/rotate.cur -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Resources/Cursors/scale.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Resources/Cursors/scale.cur -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Resources/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Resources/Thumbs.db -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Resources/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Resources/circle.png -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Resources/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Resources/folder.png -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Resources/primitive_chain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Resources/primitive_chain.jpg -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Resources/primitive_point_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Resources/primitive_point_light.png -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Resources/primitive_spring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Resources/primitive_spring.jpg -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Resources/primitive_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Resources/primitive_start.png -------------------------------------------------------------------------------- /src/Gleed2D.Ui/Resources/primitive_track.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/Resources/primitive_track.jpg -------------------------------------------------------------------------------- /src/Gleed2D.Ui/TextureBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/TextureBrush.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/XnaGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/XnaGame.cs -------------------------------------------------------------------------------- /src/Gleed2D.Ui/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/app.config -------------------------------------------------------------------------------- /src/Gleed2D.Ui/gleed2d.csproj.Debug.cachefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/gleed2d.csproj.Debug.cachefile -------------------------------------------------------------------------------- /src/Gleed2D.Ui/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D.Ui/packages.config -------------------------------------------------------------------------------- /src/Gleed2D_Tool.1.2.dotCover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D_Tool.1.2.dotCover -------------------------------------------------------------------------------- /src/Gleed2D_Tool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D_Tool.sln -------------------------------------------------------------------------------- /src/Gleed2D_Tool.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D_Tool.sln.DotSettings -------------------------------------------------------------------------------- /src/Gleed2D_WindowsPhone71Components.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D_WindowsPhone71Components.sln -------------------------------------------------------------------------------- /src/Gleed2D_XBoxComponents.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Gleed2D_XBoxComponents.sln -------------------------------------------------------------------------------- /src/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Guard.cs -------------------------------------------------------------------------------- /src/JetBrains.Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/JetBrains.Annotations.cs -------------------------------------------------------------------------------- /src/Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/Level.cs -------------------------------------------------------------------------------- /src/XmlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/XmlExtensions.cs -------------------------------------------------------------------------------- /src/XmlExtensions2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/XmlExtensions2.cs -------------------------------------------------------------------------------- /src/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/notes.txt -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/Castle.Core.2.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/Castle.Core.2.5.2.nupkg -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/ASL - Apache Software Foundation License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/ASL - Apache Software Foundation License.txt -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/BreakingChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/BreakingChanges.txt -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/Changes.txt -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/Committers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/Committers.txt -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/NET35/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/NET35/Castle.Core.dll -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/NET35/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/NET35/Castle.Core.xml -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/NET40ClientProfile/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/NET40ClientProfile/Castle.Core.dll -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/NET40ClientProfile/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/NET40ClientProfile/Castle.Core.xml -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/SL3/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/SL3/Castle.Core.dll -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/SL3/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/SL3/Castle.Core.xml -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/SL4/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/SL4/Castle.Core.dll -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/SL4/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/SL4/Castle.Core.xml -------------------------------------------------------------------------------- /src/packages/Castle.Core.2.5.2/lib/releaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Castle.Core.2.5.2/lib/releaseNotes.txt -------------------------------------------------------------------------------- /src/packages/FakeItEasy.1.7.4166.27/FakeItEasy.1.7.4166.27.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/FakeItEasy.1.7.4166.27/FakeItEasy.1.7.4166.27.nupkg -------------------------------------------------------------------------------- /src/packages/FakeItEasy.1.7.4166.27/lib/NET40/FakeItEasy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/FakeItEasy.1.7.4166.27/lib/NET40/FakeItEasy.dll -------------------------------------------------------------------------------- /src/packages/FakeItEasy.1.7.4166.27/lib/NET40/FakeItEasy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/FakeItEasy.1.7.4166.27/lib/NET40/FakeItEasy.xml -------------------------------------------------------------------------------- /src/packages/FakeItEasy.1.7.4166.27/lib/SL4/FakeItEasy-SL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/FakeItEasy.1.7.4166.27/lib/SL4/FakeItEasy-SL.dll -------------------------------------------------------------------------------- /src/packages/Should.1.1.12.0/Should.1.1.12.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Should.1.1.12.0/Should.1.1.12.0.nupkg -------------------------------------------------------------------------------- /src/packages/Should.1.1.12.0/lib/Should.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/Should.1.1.12.0/lib/Should.dll -------------------------------------------------------------------------------- /src/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/repositories.config -------------------------------------------------------------------------------- /src/packages/structuremap.2.6.2/lib/StructureMap.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/structuremap.2.6.2/lib/StructureMap.XML -------------------------------------------------------------------------------- /src/packages/structuremap.2.6.2/lib/StructureMap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/structuremap.2.6.2/lib/StructureMap.dll -------------------------------------------------------------------------------- /src/packages/structuremap.2.6.2/lib/StructureMap.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/structuremap.2.6.2/lib/StructureMap.pdb -------------------------------------------------------------------------------- /src/packages/structuremap.2.6.2/structuremap.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/structuremap.2.6.2/structuremap.2.6.2.nupkg -------------------------------------------------------------------------------- /src/packages/xunit.1.8.0.1545/lib/xunit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/xunit.1.8.0.1545/lib/xunit.dll -------------------------------------------------------------------------------- /src/packages/xunit.1.8.0.1545/lib/xunit.dll.tdnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/xunit.1.8.0.1545/lib/xunit.dll.tdnet -------------------------------------------------------------------------------- /src/packages/xunit.1.8.0.1545/lib/xunit.runner.tdnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/xunit.1.8.0.1545/lib/xunit.runner.tdnet.dll -------------------------------------------------------------------------------- /src/packages/xunit.1.8.0.1545/lib/xunit.runner.utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/xunit.1.8.0.1545/lib/xunit.runner.utility.dll -------------------------------------------------------------------------------- /src/packages/xunit.1.8.0.1545/lib/xunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/xunit.1.8.0.1545/lib/xunit.xml -------------------------------------------------------------------------------- /src/packages/xunit.1.8.0.1545/xunit.1.8.0.1545.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/packages/xunit.1.8.0.1545/xunit.1.8.0.1545.nupkg -------------------------------------------------------------------------------- /src/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SteveDunn/Gleed2D/HEAD/src/todo.txt --------------------------------------------------------------------------------