├── .editorconfig ├── .gitattributes ├── .gitignore ├── BuildContent.sh ├── BuildGame.sh ├── Common ├── Assets │ ├── AssetGuidAttribute.cs │ ├── PhysicsMaterialGuidAttribute.cs │ ├── PrefabGuidAttribute.cs │ ├── SceneGuidAttribute.cs │ ├── SpriteSheetAssetGuidAttribute.cs │ ├── SpriteSheetAssetGuidReference.cs │ ├── SpriteSheetGuidAttribute.cs │ └── SpriteSheetSpriteIndexReference.cs ├── Macabre2D.Common.csproj ├── README.md └── Serialization │ ├── CustomContractResolver.cs │ ├── DesktopDataManager.cs │ ├── EmptyDataManager.cs │ ├── IDataManager.cs │ ├── JsonColorConverter.cs │ ├── Serializer.cs │ └── VersionedData.cs ├── Directory.Build.props ├── Framework ├── Assets │ ├── Asset.cs │ ├── AssetManager.cs │ ├── AssetPackage.cs │ ├── AssetReference.cs │ ├── AssetReferenceCollection.cs │ └── ContentMetadata.cs ├── Attributes │ ├── EntityCommandAttribute.cs │ ├── ResourceNameAttribute.cs │ └── TypeRestrictionAttribute.cs ├── Audio │ ├── Assets │ │ ├── AudioClip.cs │ │ ├── AudioClipReference.cs │ │ └── AudioClipReferenceQueue.cs │ ├── AudioClipInstance.cs │ └── AudioPlayer.cs ├── Diagnostics │ ├── BaseDrawer.cs │ ├── BoundingAreaDrawer.cs │ ├── CircleDrawer.cs │ ├── ColliderDrawer.cs │ ├── LineDrawer.cs │ ├── LineHelper.cs │ ├── LineStripDrawer.cs │ └── PrimitiveDrawer.cs ├── EventArgs │ ├── CollectionChangedEventArgs.cs │ └── LayerNameChangedEventArgs.cs ├── Extensions │ ├── BoundableExtensions.cs │ ├── CloneExtensions.cs │ ├── ColorExtensions.cs │ ├── GraphicsDeviceExtensions.cs │ ├── KeyboardStateExtensions.cs │ ├── ResourceManagerExtensions.cs │ ├── SpriteBatchExtensions.cs │ ├── TypeExtensions.cs │ └── VectorExtensions.cs ├── Hierarchy │ ├── Assets │ │ ├── PrefabAsset.cs │ │ ├── PrefabReference.cs │ │ ├── SceneAsset.cs │ │ └── SceneReference.cs │ ├── BaseGame.cs │ ├── EmptyObject.cs │ ├── Entity.cs │ ├── EntityCollection.cs │ ├── EntityGuidAttribute.cs │ ├── EntityReference.cs │ ├── EntityReferenceCollection.cs │ ├── FixedUpdateableEntity.cs │ ├── GameTransition.cs │ ├── IEnableable.cs │ ├── IGame.cs │ ├── IGameObjectReference.cs │ ├── IUpdateableGameObject.cs │ ├── PrefabContainer.cs │ ├── Project │ │ ├── Fonts │ │ │ ├── ProjectFontDefinition.cs │ │ │ ├── ProjectFontKey.cs │ │ │ └── ProjectFonts.cs │ │ ├── GameProject.cs │ │ ├── PhysicsMaterialCollection.cs │ │ ├── ProjectFallbacks.cs │ │ ├── RenderStepCollection.cs │ │ └── RenderStepReference.cs │ ├── Scene.cs │ ├── SystemCollection.cs │ └── UpdateableEntity.cs ├── Input │ ├── GamePadDisplay.cs │ ├── InputDevice.cs │ ├── InputSettings.cs │ ├── InputState.cs │ ├── InputSystem.cs │ └── MouseButton.cs ├── Licenses.Designer.cs ├── Licenses.en-gb.resx ├── Licenses.en-us.resx ├── Licenses.en.resx ├── Licenses.resx ├── Macabre2D.Framework.csproj ├── Physics │ ├── Bodies │ │ ├── DynamicPhysicsBody.cs │ │ ├── EquilateralTriangleBody.cs │ │ ├── PhysicsBody.cs │ │ ├── QuadBody.cs │ │ ├── SimplePhysicsBody.cs │ │ ├── TileableBoxBody.cs │ │ ├── TileableEdgeBody.cs │ │ ├── TileableLineBody.cs │ │ ├── TrapezoidBody.cs │ │ └── TriangleBody.cs │ ├── Colliders │ │ ├── CircleCollider.cs │ │ ├── Collider.cs │ │ ├── EmptyCollider.cs │ │ ├── LineCollider.cs │ │ ├── LineStripCollider.cs │ │ ├── PolygonCollider.cs │ │ └── RectangleCollider.cs │ ├── CollisionEventArgs.cs │ ├── CollisionMap.cs │ ├── DefaultCollisionResolver.cs │ ├── Gravity.cs │ ├── ICollisionResolver.cs │ ├── LineSegment.cs │ ├── PhysicsLoop.cs │ ├── PhysicsMaterial.cs │ ├── PhysicsMaterialReference.cs │ ├── Projection.cs │ ├── RaycastHit.cs │ ├── RelativeVertices.cs │ └── SimplePhysicsSystem.cs ├── Rendering │ ├── AnimationSystem.cs │ ├── Assets │ │ ├── AnimationEmitterReference.cs │ │ ├── AutoTileSet.cs │ │ ├── AutoTileSetCollection.cs │ │ ├── AutoTileSetReference.cs │ │ ├── CardinalDirectionIconSetReference.cs │ │ ├── CardinalDirectionsIconSet.cs │ │ ├── FontAsset.cs │ │ ├── GamePadIconSet.cs │ │ ├── GamePadIconSetReference.cs │ │ ├── KeyboardIconSet.cs │ │ ├── KeyboardIconSetReference.cs │ │ ├── MouseButtonIconSet.cs │ │ ├── MouseButtonIconSetReference.cs │ │ ├── MouseCursorIconSet.cs │ │ ├── MouseCursorIconSetReference.cs │ │ ├── Shaders │ │ │ ├── ShaderAsset.cs │ │ │ ├── ShaderConfiguration.cs │ │ │ └── ShaderReference.cs │ │ ├── SpriteAnimation.cs │ │ ├── SpriteAnimationCollection.cs │ │ ├── SpriteAnimationKey.cs │ │ ├── SpriteAnimationReference.cs │ │ ├── SpriteAnimationStep.cs │ │ ├── SpriteReference.cs │ │ ├── SpriteSheet.cs │ │ ├── SpriteSheetAssetReference.cs │ │ ├── SpriteSheetFont.cs │ │ ├── SpriteSheetFontCharacter.cs │ │ ├── SpriteSheetFontCollection.cs │ │ ├── SpriteSheetFontReference.cs │ │ ├── SpriteSheetIcon.cs │ │ ├── SpriteSheetIconSet.cs │ │ ├── SpriteSheetIconSetCollection.cs │ │ ├── SpriteSheetKeyedMember.cs │ │ ├── SpriteSheetMember.cs │ │ ├── SpriteSheetMemberCollection.cs │ │ └── SpriteSheetReference.cs │ ├── BaseSpriteAnimator.cs │ ├── BaseSpriteEntity.cs │ ├── BlendStateType.cs │ ├── BoundableCover.cs │ ├── Camera.cs │ ├── CardinalDirectionRenderer.cs │ ├── ColorOverride.cs │ ├── GamePadButtonRenderer.cs │ ├── IAnimatableEntity.cs │ ├── ITextRenderer.cs │ ├── IconSetRenderer.cs │ ├── InputActionRenderer.cs │ ├── LoopingRepeatedSpriteAnimator.cs │ ├── LoopingSpriteAnimator.cs │ ├── MouseCursorRenderer.cs │ ├── PositionalSpriteAnimation.cs │ ├── QueueableSpriteAnimation.cs │ ├── QueueableSpriteAnimator.cs │ ├── RandomAnimationSpriteAnimator.cs │ ├── RandomFrameSpriteAnimator.cs │ ├── RenderOptions.cs │ ├── RenderSystem.cs │ ├── RenderableBlinker.cs │ ├── RenderableEntity.cs │ ├── SamplerStateType.cs │ ├── ScrollingSpriteRenderer.cs │ ├── SingleColorBox.cs │ ├── SpriteRenderer.cs │ ├── Steps │ │ ├── CurrentSceneRenderStep.cs │ │ ├── OverlayRenderStep.cs │ │ ├── RenderStep.cs │ │ └── ScreenShaderRenderStep.cs │ ├── TextAreaRenderer.cs │ ├── TextAreaScroller.cs │ ├── TextCharacter.cs │ ├── TextLine.cs │ ├── TextLineRenderer.cs │ ├── TextRenderer.cs │ ├── TextWord.cs │ └── Texture2DRenderer.cs ├── Settings │ ├── AudioSettings.cs │ ├── DisplaySettings.cs │ ├── RenderSettings.cs │ └── UserSettings.cs ├── Systems │ ├── FixedTimeStepSystem.cs │ ├── FixedUpdateSystem.cs │ ├── GameSystem.cs │ ├── GameSystemKind.cs │ ├── SystemReference.cs │ └── UpdateSystem.cs ├── Templates │ └── Scenes │ │ ├── DefaultSceneTemplate.cs │ │ ├── EmptySceneTemplate.cs │ │ └── SceneTemplate.cs ├── Tiles │ ├── AutoTileExtensions.cs │ ├── AutoTileMap.cs │ ├── BinaryTileMap.cs │ ├── BoxTileBoundableCover.cs │ ├── BoxTileMap.cs │ ├── FilteredAutoTileMap.cs │ ├── GridContainer.cs │ ├── IActiveTileableEntity.cs │ ├── ITileableEntity.cs │ ├── PrefabTileMap.cs │ ├── RenderableTileMap.cs │ ├── RenderableTileableEntity.cs │ ├── TileChunk.cs │ └── TileableEntity.cs ├── Time │ ├── ColorLerpTimer.cs │ ├── FrameTime.cs │ └── GameTimer.cs ├── Transform │ ├── TransformInheritance.cs │ └── Transformable.cs ├── UI │ └── Docking │ │ ├── BaseDockable.cs │ │ ├── DockLocation.cs │ │ ├── DockablePanel.cs │ │ ├── DockableStackPanel.cs │ │ ├── DockableWrapper.cs │ │ ├── DockingContainer.cs │ │ └── IDockable.cs └── Utility │ ├── ActionHelpers.cs │ ├── BoundingArea.cs │ ├── CardinalDirections.cs │ ├── CommonCategories.cs │ ├── Defaults.cs │ ├── EnumHelper.cs │ ├── FilterCollection.cs │ ├── FilterSortCollection.cs │ ├── FrameRateDisplayer.cs │ ├── FrameRateEntity.cs │ ├── IBoundableEntity.cs │ ├── IIdentifiable.cs │ ├── IIndexedCollection.cs │ ├── INameable.cs │ ├── InputActionIconResolver.cs │ ├── LaunchArguments.cs │ ├── LicenseDefinition.cs │ ├── LicenseHelper.cs │ ├── NameableCollection.cs │ ├── OffsetOptions.cs │ ├── Orientation.cs │ ├── Overrides │ ├── ByteOverride.cs │ ├── FloatOverride.cs │ ├── LayersOverride.cs │ ├── RenderPriorityOverride.cs │ └── ValueOverride.cs │ ├── Padding.cs │ └── QuadTree.cs ├── Icon ├── icon.aseprite ├── icon128.png ├── icon16.png ├── icon256.png ├── icon32.png └── icon64.png ├── LICENSE ├── Macabre2D.sln ├── Macabre2D.sln.DotSettings ├── README.md ├── Scripts └── Tests │ └── Macabre2D.Scripts.Tests.csproj ├── Settings ├── CodeFormatting.vssettings ├── CodeMaid.config └── csharpstyle.vssettings ├── Tests ├── Framework │ ├── Extensions │ │ └── VectorExtensionsTests.cs │ ├── GameHelpers.cs │ ├── Hierarchy │ │ ├── EntityReferenceTests.cs │ │ ├── EntityTests.cs │ │ └── SceneTests.cs │ ├── Input │ │ ├── InputSettingsTests.cs │ │ └── InputStateTests.cs │ ├── Physics │ │ ├── CircleColliderTests.cs │ │ ├── LineColliderTests.cs │ │ ├── LineSegmentTests.cs │ │ ├── LineStripColliderTests.cs │ │ ├── PolygonColliderTests.cs │ │ ├── RaycastTests.cs │ │ ├── RectangleColliderTests.cs │ │ └── SimplePhysicsLoopTests.cs │ ├── Rendering │ │ ├── Assets │ │ │ └── SpriteAnimationTests.cs │ │ ├── CameraTests.cs │ │ ├── QueueableSpriteAnimatorTests.cs │ │ └── RenderSystemTests.cs │ ├── SceneTestContainer.cs │ ├── Serialization │ │ ├── DesktopDataManagerTests.cs │ │ └── SerializerTests.cs │ ├── Systems │ │ ├── FixedUpdateSystemTests.cs │ │ ├── SystemReferenceTests.cs │ │ └── UpdateSystemTests.cs │ ├── TestRenderableEntity.cs │ ├── TestUpdateableEntity.cs │ ├── TestableBoundable.cs │ ├── Tiles │ │ └── GridContainerTests.cs │ ├── Time │ │ └── GameTimerTests.cs │ ├── Transform │ │ └── TransformableTests.cs │ ├── UI │ │ └── Docking │ │ │ ├── DockableWrapperTests.cs │ │ │ └── DockingContainerTests.cs │ └── Utility │ │ └── BoundingAreaTests.cs └── Macabre2D.Tests.csproj ├── UI ├── AvaloniaInterop │ ├── ActiveWindowHelper.cs │ ├── AvaloniaGame.cs │ ├── Extensions │ │ └── ColorExtensions.cs │ ├── KeyMap.cs │ ├── Macabre2D.UI.AvaloniaInterop.csproj │ ├── MonoGameControl.cs │ ├── MonoGameKeyboard.cs │ └── MonoGameMouse.cs ├── Common │ ├── CommonContainerExtension.cs │ ├── Controls │ │ ├── AssetReferenceControl.axaml │ │ ├── AssetReferenceControl.axaml.cs │ │ ├── BackgroundColorPicker.axaml │ │ ├── BackgroundColorPicker.axaml.cs │ │ ├── ColorPalette.axaml │ │ ├── ColorPalette.axaml.cs │ │ ├── FilteredContentTree.axaml │ │ ├── FilteredContentTree.axaml.cs │ │ ├── FilteredSceneTree.axaml │ │ ├── FilteredSceneTree.axaml.cs │ │ ├── InputActionControl.axaml │ │ ├── InputActionControl.axaml.cs │ │ ├── SpriteDisplayCollectionControl.axaml │ │ ├── SpriteDisplayCollectionControl.axaml.cs │ │ ├── ThumbnailSizeToggle.axaml │ │ ├── ThumbnailSizeToggle.axaml.cs │ │ ├── ValueCollectionsControl.axaml │ │ ├── ValueCollectionsControl.axaml.cs │ │ ├── ValueControl.cs │ │ ├── ValueEditors │ │ │ ├── BaseNumericEditor.cs │ │ │ ├── BoolEditor.axaml │ │ │ ├── BoolEditor.axaml.cs │ │ │ ├── BoundingAreaEditor.axaml │ │ │ ├── BoundingAreaEditor.axaml.cs │ │ │ ├── ByteEditor.axaml │ │ │ ├── ByteEditor.axaml.cs │ │ │ ├── ColorEditor.axaml │ │ │ ├── ColorEditor.axaml.cs │ │ │ ├── DoubleEditor.axaml │ │ │ ├── DoubleEditor.axaml.cs │ │ │ ├── EnumEditor.axaml │ │ │ ├── EnumEditor.axaml.cs │ │ │ ├── FlagsEnumEditor.axaml │ │ │ ├── FlagsEnumEditor.axaml.cs │ │ │ ├── FloatEditor.axaml │ │ │ ├── FloatEditor.axaml.cs │ │ │ ├── Framework │ │ │ │ ├── AnimationEmitterReferenceEditor.axaml │ │ │ │ ├── AnimationEmitterReferenceEditor.axaml.cs │ │ │ │ ├── AssetGuidEditor.axaml │ │ │ │ ├── AssetGuidEditor.axaml.cs │ │ │ │ ├── AssetReferenceCollectionEditor.axaml │ │ │ │ ├── AssetReferenceCollectionEditor.axaml.cs │ │ │ │ ├── AudioSettingsEditor.axaml │ │ │ │ ├── AudioSettingsEditor.axaml.cs │ │ │ │ ├── BaseAssetReferenceEditor.cs │ │ │ │ ├── BaseSpriteSheetReferenceEditor.cs │ │ │ │ ├── ColliderEditor.axaml │ │ │ │ ├── ColliderEditor.axaml.cs │ │ │ │ ├── CollisionMapEditor.axaml │ │ │ │ ├── CollisionMapEditor.axaml.cs │ │ │ │ ├── ColorOverrideEditor.axaml │ │ │ │ ├── ColorOverrideEditor.axaml.cs │ │ │ │ ├── EntityGuidEditor.axaml │ │ │ │ ├── EntityGuidEditor.axaml.cs │ │ │ │ ├── EntityReferenceCollectionEditor.axaml │ │ │ │ ├── EntityReferenceCollectionEditor.axaml.cs │ │ │ │ ├── GameTimerEditor.axaml │ │ │ │ ├── GameTimerEditor.axaml.cs │ │ │ │ ├── InputBindingsEditor.axaml │ │ │ │ ├── InputBindingsEditor.axaml.cs │ │ │ │ ├── LayersOverrideEditor.axaml │ │ │ │ ├── LayersOverrideEditor.axaml.cs │ │ │ │ ├── PaddingEditor.axaml │ │ │ │ ├── PaddingEditor.axaml.cs │ │ │ │ ├── PhysicsMaterialGuidEditor.axaml │ │ │ │ ├── PhysicsMaterialGuidEditor.axaml.cs │ │ │ │ ├── ProjectFontsEditor.axaml │ │ │ │ ├── ProjectFontsEditor.axaml.cs │ │ │ │ ├── RelativeVerticesEditor.axaml │ │ │ │ ├── RelativeVerticesEditor.axaml.cs │ │ │ │ ├── RenderPriorityOverrideEditor.axaml │ │ │ │ ├── RenderPriorityOverrideEditor.axaml.cs │ │ │ │ ├── RenderSettingsEditor.axaml │ │ │ │ ├── RenderSettingsEditor.axaml.cs │ │ │ │ ├── RenderStepReferenceEditor.axaml │ │ │ │ ├── RenderStepReferenceEditor.axaml.cs │ │ │ │ ├── SpriteReferenceEditor.axaml │ │ │ │ ├── SpriteReferenceEditor.axaml.cs │ │ │ │ ├── SpriteSheetAssetGuidReferenceEditor.axaml │ │ │ │ ├── SpriteSheetAssetGuidReferenceEditor.axaml.cs │ │ │ │ ├── SpriteSheetAssetReferenceEditor.axaml │ │ │ │ ├── SpriteSheetAssetReferenceEditor.axaml.cs │ │ │ │ ├── SpriteSheetReferenceEditor.axaml │ │ │ │ ├── SpriteSheetReferenceEditor.axaml.cs │ │ │ │ ├── SpriteSheetSpriteIndexReferenceEditor.axaml │ │ │ │ ├── SpriteSheetSpriteIndexReferenceEditor.axaml.cs │ │ │ │ ├── SystemReferenceEditor.axaml │ │ │ │ ├── SystemReferenceEditor.axaml.cs │ │ │ │ └── ValueOverrideEditor.cs │ │ │ ├── IntEditor.axaml │ │ │ ├── IntEditor.axaml.cs │ │ │ ├── LongEditor.axaml │ │ │ ├── LongEditor.axaml.cs │ │ │ ├── PointEditor.axaml │ │ │ ├── PointEditor.axaml.cs │ │ │ ├── PredefinedIntEditor.axaml │ │ │ ├── PredefinedIntEditor.axaml.cs │ │ │ ├── Project │ │ │ │ ├── InputActionEditor.axaml │ │ │ │ ├── InputActionEditor.axaml.cs │ │ │ │ ├── LayersEditor.axaml │ │ │ │ └── LayersEditor.axaml.cs │ │ │ ├── ResourceStringEditor.axaml │ │ │ ├── ResourceStringEditor.axaml.cs │ │ │ ├── ShortEditor.axaml │ │ │ ├── ShortEditor.axaml.cs │ │ │ ├── StringEditor.axaml │ │ │ ├── StringEditor.axaml.cs │ │ │ ├── TypeEditor.axaml │ │ │ ├── TypeEditor.axaml.cs │ │ │ ├── UIntEditor.axaml │ │ │ ├── UIntEditor.axaml.cs │ │ │ ├── ULongEditor.axaml │ │ │ ├── ULongEditor.axaml.cs │ │ │ ├── UShortEditor.axaml │ │ │ ├── UShortEditor.axaml.cs │ │ │ ├── ValueEditorControl.cs │ │ │ ├── Vector2Editor.axaml │ │ │ ├── Vector2Editor.axaml.cs │ │ │ ├── VersionEditor.axaml │ │ │ └── VersionEditor.axaml.cs │ │ ├── ValueInfo │ │ │ ├── ContentDirectoryInfoControl.axaml │ │ │ ├── ContentDirectoryInfoControl.axaml.cs │ │ │ ├── ContentFileInfoControl.axaml │ │ │ ├── ContentFileInfoControl.axaml.cs │ │ │ ├── SpriteSheetInfoControl.axaml │ │ │ └── SpriteSheetInfoControl.axaml.cs │ │ ├── VolumeCategoryEditor.axaml │ │ ├── VolumeCategoryEditor.axaml.cs │ │ ├── VolumeSlider.axaml │ │ └── VolumeSlider.axaml.cs │ ├── Converters │ │ ├── AssetToIconConverter.cs │ │ ├── CollectionHasItemsConverter.cs │ │ ├── ColorDescriptionConverter.cs │ │ ├── GizmoKindToBoolConverter.cs │ │ ├── LayersToBoolConverter.cs │ │ ├── MetadataToNameConverter.cs │ │ ├── MonoGameColorToAvaloniaBrushConverter.cs │ │ ├── PhysicsMaterialToCaptionConverter.cs │ │ ├── PredefinedIntegerToDisplayConverter.cs │ │ ├── SpriteIndexToBitmapConverter.cs │ │ ├── ThumbnailSizeToBoolConverter.cs │ │ ├── ThumbnailSizeToPixelSizeConverter.cs │ │ ├── ToDisplayNameConverter.cs │ │ ├── ToTypeNameConverter.cs │ │ └── ValueControlCollectionVisibilityConverter.cs │ ├── Helpers │ │ ├── MenuItemHelper.cs │ │ └── TreeViewHelper.cs │ ├── Macabre2D.UI.Common.csproj │ ├── Models │ │ ├── Content │ │ │ ├── BuildContentArguments.cs │ │ │ ├── ContentDirectory.cs │ │ │ ├── ContentFile.cs │ │ │ ├── ContentNode.cs │ │ │ ├── FilteredContentWrapper.cs │ │ │ ├── ProjectNode.cs │ │ │ ├── RootContentDirectory.cs │ │ │ └── SpriteSheetContentFile.cs │ │ ├── EditorSettings.cs │ │ ├── EditorTabs.cs │ │ ├── FilteredEntityWrapper.cs │ │ ├── IValueControl.cs │ │ ├── IValueEditor.cs │ │ ├── IValueInfo.cs │ │ ├── MenuItemModel.cs │ │ ├── NotifyingWrapper.cs │ │ ├── ProjectFontModel.cs │ │ ├── Rendering │ │ │ ├── AutoTileIndexModel.cs │ │ │ ├── BaseSpriteSheetIndexModel.cs │ │ │ ├── SpriteDisplayCollection.cs │ │ │ ├── SpriteDisplayModel.cs │ │ │ ├── SpriteSheetAssetDisplayCollection.cs │ │ │ ├── SpriteSheetFontIndexModel.cs │ │ │ └── ThumbnailSize.cs │ │ ├── ResourceEntry.cs │ │ ├── SpriteFontLayoutResult.cs │ │ ├── ValueControlCollection.cs │ │ └── ValueControlDependencies.cs │ ├── MonoGame │ │ ├── EditorGame.cs │ │ ├── Entities │ │ │ ├── BaseAxisGizmo.cs │ │ │ ├── BoundingAreaAndColliderDrawer.cs │ │ │ ├── CameraController.cs │ │ │ ├── EditorCamera.cs │ │ │ ├── EditorGrid.cs │ │ │ ├── IGizmo.cs │ │ │ ├── SelectionDisplay.cs │ │ │ ├── SelectorGizmo.cs │ │ │ ├── TileGizmo.cs │ │ │ └── TranslationGizmo.cs │ │ ├── GizmoKind.cs │ │ └── Systems │ │ │ ├── EditorRenderSystem.cs │ │ │ └── EditorUpdateSystem.cs │ ├── Resolver.cs │ ├── Services │ │ ├── AssemblyService.cs │ │ ├── AssetSelectionService.cs │ │ ├── BuildService.cs │ │ ├── BusyService.cs │ │ ├── CommonDialogService.cs │ │ ├── ContentService.cs │ │ ├── EditorService.cs │ │ ├── EditorSettingsService.cs │ │ ├── EntityService.cs │ │ ├── PathService.cs │ │ ├── ProjectService.cs │ │ ├── SaveService.cs │ │ ├── SceneService.cs │ │ ├── SelectionService.cs │ │ ├── SystemService.cs │ │ └── ValueControlService.cs │ ├── Theme │ │ ├── Controls │ │ │ ├── Border.axaml │ │ │ ├── MenuItemFromModel.axaml │ │ │ ├── ScrollBar.axaml │ │ │ └── SpriteListBoxItem.axaml │ │ ├── IconPaths.axaml │ │ └── Theme.axaml │ ├── Views │ │ ├── Assets │ │ │ ├── AutoTileSetEditorView.axaml │ │ │ ├── AutoTileSetEditorView.axaml.cs │ │ │ ├── AutoTileSetEditorViewModel.cs │ │ │ ├── SpriteAnimationEditorView.axaml │ │ │ ├── SpriteAnimationEditorView.axaml.cs │ │ │ ├── SpriteAnimationEditorViewModel.cs │ │ │ ├── SpriteSheetFontEditorView.axaml │ │ │ ├── SpriteSheetFontEditorView.axaml.cs │ │ │ ├── SpriteSheetFontEditorViewModel.cs │ │ │ ├── SpriteSheetIconSetEditorView.axaml │ │ │ ├── SpriteSheetIconSetEditorView.axaml.cs │ │ │ └── SpriteSheetIconSetEditorViewModel.cs │ │ ├── Dialogs │ │ │ ├── BaseFilterDialogViewModel.cs │ │ │ ├── ContentSelectionDialog.axaml │ │ │ ├── ContentSelectionDialog.axaml.cs │ │ │ ├── ContentSelectionViewModel.cs │ │ │ ├── EntitySelectionDialog.axaml │ │ │ ├── EntitySelectionDialog.axaml.cs │ │ │ ├── EntitySelectionViewModel.cs │ │ │ ├── KeySelectDialog.axaml │ │ │ ├── KeySelectDialog.axaml.cs │ │ │ ├── LicenseDialog.axaml │ │ │ ├── LicenseDialog.axaml.cs │ │ │ ├── ResourceSelectionDialog.axaml │ │ │ ├── ResourceSelectionDialog.axaml.cs │ │ │ ├── ResourceSelectionViewModel.cs │ │ │ ├── SpriteFontLayoutDialog.axaml │ │ │ ├── SpriteFontLayoutDialog.axaml.cs │ │ │ ├── SpriteFontLayoutViewModel.cs │ │ │ ├── SystemSelectionDialog.axaml │ │ │ ├── SystemSelectionDialog.axaml.cs │ │ │ ├── SystemSelectionViewModel.cs │ │ │ ├── TextListDialog.axaml │ │ │ ├── TextListDialog.axaml.cs │ │ │ ├── TypeSelectionDialog.axaml │ │ │ ├── TypeSelectionDialog.axaml.cs │ │ │ └── TypeSelectionViewModel.cs │ │ └── FilterableViewModel.cs │ └── icon.ico ├── ContentBuilder │ ├── Macabre2D.UI.ContentBuilder.csproj │ └── Program.cs ├── Editor │ ├── App.axaml │ ├── App.axaml.cs │ ├── EditorContainerExtension.cs │ ├── Macabre2D.UI.Editor.csproj │ ├── Program.cs │ ├── Services │ │ └── LocalDialogService.cs │ ├── ViewLocator.cs │ ├── Views │ │ ├── Dialogs │ │ │ ├── SplashScreen.axaml │ │ │ ├── SplashScreen.axaml.cs │ │ │ ├── SpriteSelectionDialog.axaml │ │ │ ├── SpriteSelectionDialog.axaml.cs │ │ │ ├── SpriteSelectionViewModel.cs │ │ │ ├── SpriteSheetAssetSelectionDialog.axaml │ │ │ ├── SpriteSheetAssetSelectionDialog.axaml.cs │ │ │ └── SpriteSheetAssetSelectionViewModel.cs │ │ ├── GizmoSelectionView.axaml │ │ ├── GizmoSelectionView.axaml.cs │ │ ├── GizmoSelectionViewModel.cs │ │ ├── MainWindow.axaml │ │ ├── MainWindow.axaml.cs │ │ ├── MainWindowViewModel.cs │ │ ├── ProjectEditorView.axaml │ │ ├── ProjectEditorView.axaml.cs │ │ ├── ProjectEditorViewModel.cs │ │ ├── ProjectTreeView.axaml │ │ ├── ProjectTreeView.axaml.cs │ │ ├── ProjectTreeViewModel.cs │ │ ├── SceneEditorView.axaml │ │ ├── SceneEditorView.axaml.cs │ │ ├── SceneEditorViewModel.cs │ │ ├── SceneTreeView.axaml │ │ ├── SceneTreeView.axaml.cs │ │ └── SceneTreeViewModel.cs │ └── nuget.config └── Tests │ ├── Common │ ├── Models │ │ └── Content │ │ │ ├── ContentDirectoryTests.cs │ │ │ ├── ContentNodeTests.cs │ │ │ └── TestFileSystemService.cs │ └── Services │ │ ├── BuildServiceTests.cs │ │ ├── ProjectServiceTests.cs │ │ ├── SaveServiceTests.cs │ │ └── SceneServiceTests.cs │ ├── Content │ ├── Content.mgcb │ ├── League Mono.otf │ ├── League Mono.spritefont │ └── skull.png │ └── Macabre2D.UI.Tests.csproj └── icon.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildContent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/BuildContent.sh -------------------------------------------------------------------------------- /BuildGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/BuildGame.sh -------------------------------------------------------------------------------- /Common/Assets/AssetGuidAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Assets/AssetGuidAttribute.cs -------------------------------------------------------------------------------- /Common/Assets/PhysicsMaterialGuidAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Assets/PhysicsMaterialGuidAttribute.cs -------------------------------------------------------------------------------- /Common/Assets/PrefabGuidAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Assets/PrefabGuidAttribute.cs -------------------------------------------------------------------------------- /Common/Assets/SceneGuidAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Assets/SceneGuidAttribute.cs -------------------------------------------------------------------------------- /Common/Assets/SpriteSheetAssetGuidAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Assets/SpriteSheetAssetGuidAttribute.cs -------------------------------------------------------------------------------- /Common/Assets/SpriteSheetAssetGuidReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Assets/SpriteSheetAssetGuidReference.cs -------------------------------------------------------------------------------- /Common/Assets/SpriteSheetGuidAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Assets/SpriteSheetGuidAttribute.cs -------------------------------------------------------------------------------- /Common/Assets/SpriteSheetSpriteIndexReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Assets/SpriteSheetSpriteIndexReference.cs -------------------------------------------------------------------------------- /Common/Macabre2D.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Macabre2D.Common.csproj -------------------------------------------------------------------------------- /Common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/README.md -------------------------------------------------------------------------------- /Common/Serialization/CustomContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Serialization/CustomContractResolver.cs -------------------------------------------------------------------------------- /Common/Serialization/DesktopDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Serialization/DesktopDataManager.cs -------------------------------------------------------------------------------- /Common/Serialization/EmptyDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Serialization/EmptyDataManager.cs -------------------------------------------------------------------------------- /Common/Serialization/IDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Serialization/IDataManager.cs -------------------------------------------------------------------------------- /Common/Serialization/JsonColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Serialization/JsonColorConverter.cs -------------------------------------------------------------------------------- /Common/Serialization/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Serialization/Serializer.cs -------------------------------------------------------------------------------- /Common/Serialization/VersionedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Common/Serialization/VersionedData.cs -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Framework/Assets/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Assets/Asset.cs -------------------------------------------------------------------------------- /Framework/Assets/AssetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Assets/AssetManager.cs -------------------------------------------------------------------------------- /Framework/Assets/AssetPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Assets/AssetPackage.cs -------------------------------------------------------------------------------- /Framework/Assets/AssetReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Assets/AssetReference.cs -------------------------------------------------------------------------------- /Framework/Assets/AssetReferenceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Assets/AssetReferenceCollection.cs -------------------------------------------------------------------------------- /Framework/Assets/ContentMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Assets/ContentMetadata.cs -------------------------------------------------------------------------------- /Framework/Attributes/EntityCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Attributes/EntityCommandAttribute.cs -------------------------------------------------------------------------------- /Framework/Attributes/ResourceNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Attributes/ResourceNameAttribute.cs -------------------------------------------------------------------------------- /Framework/Attributes/TypeRestrictionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Attributes/TypeRestrictionAttribute.cs -------------------------------------------------------------------------------- /Framework/Audio/Assets/AudioClip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Audio/Assets/AudioClip.cs -------------------------------------------------------------------------------- /Framework/Audio/Assets/AudioClipReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Audio/Assets/AudioClipReference.cs -------------------------------------------------------------------------------- /Framework/Audio/Assets/AudioClipReferenceQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Audio/Assets/AudioClipReferenceQueue.cs -------------------------------------------------------------------------------- /Framework/Audio/AudioClipInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Audio/AudioClipInstance.cs -------------------------------------------------------------------------------- /Framework/Audio/AudioPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Audio/AudioPlayer.cs -------------------------------------------------------------------------------- /Framework/Diagnostics/BaseDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Diagnostics/BaseDrawer.cs -------------------------------------------------------------------------------- /Framework/Diagnostics/BoundingAreaDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Diagnostics/BoundingAreaDrawer.cs -------------------------------------------------------------------------------- /Framework/Diagnostics/CircleDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Diagnostics/CircleDrawer.cs -------------------------------------------------------------------------------- /Framework/Diagnostics/ColliderDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Diagnostics/ColliderDrawer.cs -------------------------------------------------------------------------------- /Framework/Diagnostics/LineDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Diagnostics/LineDrawer.cs -------------------------------------------------------------------------------- /Framework/Diagnostics/LineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Diagnostics/LineHelper.cs -------------------------------------------------------------------------------- /Framework/Diagnostics/LineStripDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Diagnostics/LineStripDrawer.cs -------------------------------------------------------------------------------- /Framework/Diagnostics/PrimitiveDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Diagnostics/PrimitiveDrawer.cs -------------------------------------------------------------------------------- /Framework/EventArgs/CollectionChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/EventArgs/CollectionChangedEventArgs.cs -------------------------------------------------------------------------------- /Framework/EventArgs/LayerNameChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/EventArgs/LayerNameChangedEventArgs.cs -------------------------------------------------------------------------------- /Framework/Extensions/BoundableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Extensions/BoundableExtensions.cs -------------------------------------------------------------------------------- /Framework/Extensions/CloneExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Extensions/CloneExtensions.cs -------------------------------------------------------------------------------- /Framework/Extensions/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Extensions/ColorExtensions.cs -------------------------------------------------------------------------------- /Framework/Extensions/GraphicsDeviceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Extensions/GraphicsDeviceExtensions.cs -------------------------------------------------------------------------------- /Framework/Extensions/KeyboardStateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Extensions/KeyboardStateExtensions.cs -------------------------------------------------------------------------------- /Framework/Extensions/ResourceManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Extensions/ResourceManagerExtensions.cs -------------------------------------------------------------------------------- /Framework/Extensions/SpriteBatchExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Extensions/SpriteBatchExtensions.cs -------------------------------------------------------------------------------- /Framework/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /Framework/Extensions/VectorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Extensions/VectorExtensions.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Assets/PrefabAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Assets/PrefabAsset.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Assets/PrefabReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Assets/PrefabReference.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Assets/SceneAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Assets/SceneAsset.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Assets/SceneReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Assets/SceneReference.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/BaseGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/BaseGame.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/EmptyObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/EmptyObject.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Entity.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/EntityCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/EntityCollection.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/EntityGuidAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/EntityGuidAttribute.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/EntityReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/EntityReference.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/EntityReferenceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/EntityReferenceCollection.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/FixedUpdateableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/FixedUpdateableEntity.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/GameTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/GameTransition.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/IEnableable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/IEnableable.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/IGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/IGame.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/IGameObjectReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/IGameObjectReference.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/IUpdateableGameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/IUpdateableGameObject.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/PrefabContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/PrefabContainer.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Project/Fonts/ProjectFontDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Project/Fonts/ProjectFontDefinition.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Project/Fonts/ProjectFontKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Project/Fonts/ProjectFontKey.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Project/Fonts/ProjectFonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Project/Fonts/ProjectFonts.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Project/GameProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Project/GameProject.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Project/PhysicsMaterialCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Project/PhysicsMaterialCollection.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Project/ProjectFallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Project/ProjectFallbacks.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Project/RenderStepCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Project/RenderStepCollection.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Project/RenderStepReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Project/RenderStepReference.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/Scene.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/SystemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/SystemCollection.cs -------------------------------------------------------------------------------- /Framework/Hierarchy/UpdateableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Hierarchy/UpdateableEntity.cs -------------------------------------------------------------------------------- /Framework/Input/GamePadDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Input/GamePadDisplay.cs -------------------------------------------------------------------------------- /Framework/Input/InputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Input/InputDevice.cs -------------------------------------------------------------------------------- /Framework/Input/InputSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Input/InputSettings.cs -------------------------------------------------------------------------------- /Framework/Input/InputState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Input/InputState.cs -------------------------------------------------------------------------------- /Framework/Input/InputSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Input/InputSystem.cs -------------------------------------------------------------------------------- /Framework/Input/MouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Input/MouseButton.cs -------------------------------------------------------------------------------- /Framework/Licenses.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Licenses.Designer.cs -------------------------------------------------------------------------------- /Framework/Licenses.en-gb.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Licenses.en-gb.resx -------------------------------------------------------------------------------- /Framework/Licenses.en-us.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Licenses.en-us.resx -------------------------------------------------------------------------------- /Framework/Licenses.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Licenses.en.resx -------------------------------------------------------------------------------- /Framework/Licenses.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Licenses.resx -------------------------------------------------------------------------------- /Framework/Macabre2D.Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Macabre2D.Framework.csproj -------------------------------------------------------------------------------- /Framework/Physics/Bodies/DynamicPhysicsBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Bodies/DynamicPhysicsBody.cs -------------------------------------------------------------------------------- /Framework/Physics/Bodies/EquilateralTriangleBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Bodies/EquilateralTriangleBody.cs -------------------------------------------------------------------------------- /Framework/Physics/Bodies/PhysicsBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Bodies/PhysicsBody.cs -------------------------------------------------------------------------------- /Framework/Physics/Bodies/QuadBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Bodies/QuadBody.cs -------------------------------------------------------------------------------- /Framework/Physics/Bodies/SimplePhysicsBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Bodies/SimplePhysicsBody.cs -------------------------------------------------------------------------------- /Framework/Physics/Bodies/TileableBoxBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Bodies/TileableBoxBody.cs -------------------------------------------------------------------------------- /Framework/Physics/Bodies/TileableEdgeBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Bodies/TileableEdgeBody.cs -------------------------------------------------------------------------------- /Framework/Physics/Bodies/TileableLineBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Bodies/TileableLineBody.cs -------------------------------------------------------------------------------- /Framework/Physics/Bodies/TrapezoidBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Bodies/TrapezoidBody.cs -------------------------------------------------------------------------------- /Framework/Physics/Bodies/TriangleBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Bodies/TriangleBody.cs -------------------------------------------------------------------------------- /Framework/Physics/Colliders/CircleCollider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Colliders/CircleCollider.cs -------------------------------------------------------------------------------- /Framework/Physics/Colliders/Collider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Colliders/Collider.cs -------------------------------------------------------------------------------- /Framework/Physics/Colliders/EmptyCollider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Colliders/EmptyCollider.cs -------------------------------------------------------------------------------- /Framework/Physics/Colliders/LineCollider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Colliders/LineCollider.cs -------------------------------------------------------------------------------- /Framework/Physics/Colliders/LineStripCollider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Colliders/LineStripCollider.cs -------------------------------------------------------------------------------- /Framework/Physics/Colliders/PolygonCollider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Colliders/PolygonCollider.cs -------------------------------------------------------------------------------- /Framework/Physics/Colliders/RectangleCollider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Colliders/RectangleCollider.cs -------------------------------------------------------------------------------- /Framework/Physics/CollisionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/CollisionEventArgs.cs -------------------------------------------------------------------------------- /Framework/Physics/CollisionMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/CollisionMap.cs -------------------------------------------------------------------------------- /Framework/Physics/DefaultCollisionResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/DefaultCollisionResolver.cs -------------------------------------------------------------------------------- /Framework/Physics/Gravity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Gravity.cs -------------------------------------------------------------------------------- /Framework/Physics/ICollisionResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/ICollisionResolver.cs -------------------------------------------------------------------------------- /Framework/Physics/LineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/LineSegment.cs -------------------------------------------------------------------------------- /Framework/Physics/PhysicsLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/PhysicsLoop.cs -------------------------------------------------------------------------------- /Framework/Physics/PhysicsMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/PhysicsMaterial.cs -------------------------------------------------------------------------------- /Framework/Physics/PhysicsMaterialReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/PhysicsMaterialReference.cs -------------------------------------------------------------------------------- /Framework/Physics/Projection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/Projection.cs -------------------------------------------------------------------------------- /Framework/Physics/RaycastHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/RaycastHit.cs -------------------------------------------------------------------------------- /Framework/Physics/RelativeVertices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/RelativeVertices.cs -------------------------------------------------------------------------------- /Framework/Physics/SimplePhysicsSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Physics/SimplePhysicsSystem.cs -------------------------------------------------------------------------------- /Framework/Rendering/AnimationSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/AnimationSystem.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/AnimationEmitterReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/AnimationEmitterReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/AutoTileSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/AutoTileSet.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/AutoTileSetCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/AutoTileSetCollection.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/AutoTileSetReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/AutoTileSetReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/CardinalDirectionIconSetReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/CardinalDirectionIconSetReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/CardinalDirectionsIconSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/CardinalDirectionsIconSet.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/FontAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/FontAsset.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/GamePadIconSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/GamePadIconSet.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/GamePadIconSetReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/GamePadIconSetReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/KeyboardIconSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/KeyboardIconSet.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/KeyboardIconSetReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/KeyboardIconSetReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/MouseButtonIconSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/MouseButtonIconSet.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/MouseButtonIconSetReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/MouseButtonIconSetReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/MouseCursorIconSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/MouseCursorIconSet.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/MouseCursorIconSetReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/MouseCursorIconSetReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/Shaders/ShaderAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/Shaders/ShaderAsset.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/Shaders/ShaderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/Shaders/ShaderConfiguration.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/Shaders/ShaderReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/Shaders/ShaderReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteAnimation.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteAnimationCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteAnimationCollection.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteAnimationKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteAnimationKey.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteAnimationReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteAnimationReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteAnimationStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteAnimationStep.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheet.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetAssetReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetAssetReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetFont.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetFontCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetFontCharacter.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetFontCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetFontCollection.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetFontReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetFontReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetIcon.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetIconSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetIconSet.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetIconSetCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetIconSetCollection.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetKeyedMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetKeyedMember.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetMember.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetMemberCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetMemberCollection.cs -------------------------------------------------------------------------------- /Framework/Rendering/Assets/SpriteSheetReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Assets/SpriteSheetReference.cs -------------------------------------------------------------------------------- /Framework/Rendering/BaseSpriteAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/BaseSpriteAnimator.cs -------------------------------------------------------------------------------- /Framework/Rendering/BaseSpriteEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/BaseSpriteEntity.cs -------------------------------------------------------------------------------- /Framework/Rendering/BlendStateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/BlendStateType.cs -------------------------------------------------------------------------------- /Framework/Rendering/BoundableCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/BoundableCover.cs -------------------------------------------------------------------------------- /Framework/Rendering/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Camera.cs -------------------------------------------------------------------------------- /Framework/Rendering/CardinalDirectionRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/CardinalDirectionRenderer.cs -------------------------------------------------------------------------------- /Framework/Rendering/ColorOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/ColorOverride.cs -------------------------------------------------------------------------------- /Framework/Rendering/GamePadButtonRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/GamePadButtonRenderer.cs -------------------------------------------------------------------------------- /Framework/Rendering/IAnimatableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/IAnimatableEntity.cs -------------------------------------------------------------------------------- /Framework/Rendering/ITextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/ITextRenderer.cs -------------------------------------------------------------------------------- /Framework/Rendering/IconSetRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/IconSetRenderer.cs -------------------------------------------------------------------------------- /Framework/Rendering/InputActionRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/InputActionRenderer.cs -------------------------------------------------------------------------------- /Framework/Rendering/LoopingRepeatedSpriteAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/LoopingRepeatedSpriteAnimator.cs -------------------------------------------------------------------------------- /Framework/Rendering/LoopingSpriteAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/LoopingSpriteAnimator.cs -------------------------------------------------------------------------------- /Framework/Rendering/MouseCursorRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/MouseCursorRenderer.cs -------------------------------------------------------------------------------- /Framework/Rendering/PositionalSpriteAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/PositionalSpriteAnimation.cs -------------------------------------------------------------------------------- /Framework/Rendering/QueueableSpriteAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/QueueableSpriteAnimation.cs -------------------------------------------------------------------------------- /Framework/Rendering/QueueableSpriteAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/QueueableSpriteAnimator.cs -------------------------------------------------------------------------------- /Framework/Rendering/RandomAnimationSpriteAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/RandomAnimationSpriteAnimator.cs -------------------------------------------------------------------------------- /Framework/Rendering/RandomFrameSpriteAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/RandomFrameSpriteAnimator.cs -------------------------------------------------------------------------------- /Framework/Rendering/RenderOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/RenderOptions.cs -------------------------------------------------------------------------------- /Framework/Rendering/RenderSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/RenderSystem.cs -------------------------------------------------------------------------------- /Framework/Rendering/RenderableBlinker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/RenderableBlinker.cs -------------------------------------------------------------------------------- /Framework/Rendering/RenderableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/RenderableEntity.cs -------------------------------------------------------------------------------- /Framework/Rendering/SamplerStateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/SamplerStateType.cs -------------------------------------------------------------------------------- /Framework/Rendering/ScrollingSpriteRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/ScrollingSpriteRenderer.cs -------------------------------------------------------------------------------- /Framework/Rendering/SingleColorBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/SingleColorBox.cs -------------------------------------------------------------------------------- /Framework/Rendering/SpriteRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/SpriteRenderer.cs -------------------------------------------------------------------------------- /Framework/Rendering/Steps/CurrentSceneRenderStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Steps/CurrentSceneRenderStep.cs -------------------------------------------------------------------------------- /Framework/Rendering/Steps/OverlayRenderStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Steps/OverlayRenderStep.cs -------------------------------------------------------------------------------- /Framework/Rendering/Steps/RenderStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Steps/RenderStep.cs -------------------------------------------------------------------------------- /Framework/Rendering/Steps/ScreenShaderRenderStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Steps/ScreenShaderRenderStep.cs -------------------------------------------------------------------------------- /Framework/Rendering/TextAreaRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/TextAreaRenderer.cs -------------------------------------------------------------------------------- /Framework/Rendering/TextAreaScroller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/TextAreaScroller.cs -------------------------------------------------------------------------------- /Framework/Rendering/TextCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/TextCharacter.cs -------------------------------------------------------------------------------- /Framework/Rendering/TextLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/TextLine.cs -------------------------------------------------------------------------------- /Framework/Rendering/TextLineRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/TextLineRenderer.cs -------------------------------------------------------------------------------- /Framework/Rendering/TextRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/TextRenderer.cs -------------------------------------------------------------------------------- /Framework/Rendering/TextWord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/TextWord.cs -------------------------------------------------------------------------------- /Framework/Rendering/Texture2DRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Rendering/Texture2DRenderer.cs -------------------------------------------------------------------------------- /Framework/Settings/AudioSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Settings/AudioSettings.cs -------------------------------------------------------------------------------- /Framework/Settings/DisplaySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Settings/DisplaySettings.cs -------------------------------------------------------------------------------- /Framework/Settings/RenderSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Settings/RenderSettings.cs -------------------------------------------------------------------------------- /Framework/Settings/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Settings/UserSettings.cs -------------------------------------------------------------------------------- /Framework/Systems/FixedTimeStepSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Systems/FixedTimeStepSystem.cs -------------------------------------------------------------------------------- /Framework/Systems/FixedUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Systems/FixedUpdateSystem.cs -------------------------------------------------------------------------------- /Framework/Systems/GameSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Systems/GameSystem.cs -------------------------------------------------------------------------------- /Framework/Systems/GameSystemKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Systems/GameSystemKind.cs -------------------------------------------------------------------------------- /Framework/Systems/SystemReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Systems/SystemReference.cs -------------------------------------------------------------------------------- /Framework/Systems/UpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Systems/UpdateSystem.cs -------------------------------------------------------------------------------- /Framework/Templates/Scenes/DefaultSceneTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Templates/Scenes/DefaultSceneTemplate.cs -------------------------------------------------------------------------------- /Framework/Templates/Scenes/EmptySceneTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Templates/Scenes/EmptySceneTemplate.cs -------------------------------------------------------------------------------- /Framework/Templates/Scenes/SceneTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Templates/Scenes/SceneTemplate.cs -------------------------------------------------------------------------------- /Framework/Tiles/AutoTileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/AutoTileExtensions.cs -------------------------------------------------------------------------------- /Framework/Tiles/AutoTileMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/AutoTileMap.cs -------------------------------------------------------------------------------- /Framework/Tiles/BinaryTileMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/BinaryTileMap.cs -------------------------------------------------------------------------------- /Framework/Tiles/BoxTileBoundableCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/BoxTileBoundableCover.cs -------------------------------------------------------------------------------- /Framework/Tiles/BoxTileMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/BoxTileMap.cs -------------------------------------------------------------------------------- /Framework/Tiles/FilteredAutoTileMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/FilteredAutoTileMap.cs -------------------------------------------------------------------------------- /Framework/Tiles/GridContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/GridContainer.cs -------------------------------------------------------------------------------- /Framework/Tiles/IActiveTileableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/IActiveTileableEntity.cs -------------------------------------------------------------------------------- /Framework/Tiles/ITileableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/ITileableEntity.cs -------------------------------------------------------------------------------- /Framework/Tiles/PrefabTileMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/PrefabTileMap.cs -------------------------------------------------------------------------------- /Framework/Tiles/RenderableTileMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/RenderableTileMap.cs -------------------------------------------------------------------------------- /Framework/Tiles/RenderableTileableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/RenderableTileableEntity.cs -------------------------------------------------------------------------------- /Framework/Tiles/TileChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/TileChunk.cs -------------------------------------------------------------------------------- /Framework/Tiles/TileableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Tiles/TileableEntity.cs -------------------------------------------------------------------------------- /Framework/Time/ColorLerpTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Time/ColorLerpTimer.cs -------------------------------------------------------------------------------- /Framework/Time/FrameTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Time/FrameTime.cs -------------------------------------------------------------------------------- /Framework/Time/GameTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Time/GameTimer.cs -------------------------------------------------------------------------------- /Framework/Transform/TransformInheritance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Transform/TransformInheritance.cs -------------------------------------------------------------------------------- /Framework/Transform/Transformable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Transform/Transformable.cs -------------------------------------------------------------------------------- /Framework/UI/Docking/BaseDockable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/UI/Docking/BaseDockable.cs -------------------------------------------------------------------------------- /Framework/UI/Docking/DockLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/UI/Docking/DockLocation.cs -------------------------------------------------------------------------------- /Framework/UI/Docking/DockablePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/UI/Docking/DockablePanel.cs -------------------------------------------------------------------------------- /Framework/UI/Docking/DockableStackPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/UI/Docking/DockableStackPanel.cs -------------------------------------------------------------------------------- /Framework/UI/Docking/DockableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/UI/Docking/DockableWrapper.cs -------------------------------------------------------------------------------- /Framework/UI/Docking/DockingContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/UI/Docking/DockingContainer.cs -------------------------------------------------------------------------------- /Framework/UI/Docking/IDockable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/UI/Docking/IDockable.cs -------------------------------------------------------------------------------- /Framework/Utility/ActionHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/ActionHelpers.cs -------------------------------------------------------------------------------- /Framework/Utility/BoundingArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/BoundingArea.cs -------------------------------------------------------------------------------- /Framework/Utility/CardinalDirections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/CardinalDirections.cs -------------------------------------------------------------------------------- /Framework/Utility/CommonCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/CommonCategories.cs -------------------------------------------------------------------------------- /Framework/Utility/Defaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/Defaults.cs -------------------------------------------------------------------------------- /Framework/Utility/EnumHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/EnumHelper.cs -------------------------------------------------------------------------------- /Framework/Utility/FilterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/FilterCollection.cs -------------------------------------------------------------------------------- /Framework/Utility/FilterSortCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/FilterSortCollection.cs -------------------------------------------------------------------------------- /Framework/Utility/FrameRateDisplayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/FrameRateDisplayer.cs -------------------------------------------------------------------------------- /Framework/Utility/FrameRateEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/FrameRateEntity.cs -------------------------------------------------------------------------------- /Framework/Utility/IBoundableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/IBoundableEntity.cs -------------------------------------------------------------------------------- /Framework/Utility/IIdentifiable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/IIdentifiable.cs -------------------------------------------------------------------------------- /Framework/Utility/IIndexedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/IIndexedCollection.cs -------------------------------------------------------------------------------- /Framework/Utility/INameable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/INameable.cs -------------------------------------------------------------------------------- /Framework/Utility/InputActionIconResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/InputActionIconResolver.cs -------------------------------------------------------------------------------- /Framework/Utility/LaunchArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/LaunchArguments.cs -------------------------------------------------------------------------------- /Framework/Utility/LicenseDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/LicenseDefinition.cs -------------------------------------------------------------------------------- /Framework/Utility/LicenseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/LicenseHelper.cs -------------------------------------------------------------------------------- /Framework/Utility/NameableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/NameableCollection.cs -------------------------------------------------------------------------------- /Framework/Utility/OffsetOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/OffsetOptions.cs -------------------------------------------------------------------------------- /Framework/Utility/Orientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/Orientation.cs -------------------------------------------------------------------------------- /Framework/Utility/Overrides/ByteOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/Overrides/ByteOverride.cs -------------------------------------------------------------------------------- /Framework/Utility/Overrides/FloatOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/Overrides/FloatOverride.cs -------------------------------------------------------------------------------- /Framework/Utility/Overrides/LayersOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/Overrides/LayersOverride.cs -------------------------------------------------------------------------------- /Framework/Utility/Overrides/RenderPriorityOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/Overrides/RenderPriorityOverride.cs -------------------------------------------------------------------------------- /Framework/Utility/Overrides/ValueOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/Overrides/ValueOverride.cs -------------------------------------------------------------------------------- /Framework/Utility/Padding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/Padding.cs -------------------------------------------------------------------------------- /Framework/Utility/QuadTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Framework/Utility/QuadTree.cs -------------------------------------------------------------------------------- /Icon/icon.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Icon/icon.aseprite -------------------------------------------------------------------------------- /Icon/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Icon/icon128.png -------------------------------------------------------------------------------- /Icon/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Icon/icon16.png -------------------------------------------------------------------------------- /Icon/icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Icon/icon256.png -------------------------------------------------------------------------------- /Icon/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Icon/icon32.png -------------------------------------------------------------------------------- /Icon/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Icon/icon64.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/LICENSE -------------------------------------------------------------------------------- /Macabre2D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Macabre2D.sln -------------------------------------------------------------------------------- /Macabre2D.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Macabre2D.sln.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Tests/Macabre2D.Scripts.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Scripts/Tests/Macabre2D.Scripts.Tests.csproj -------------------------------------------------------------------------------- /Settings/CodeFormatting.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Settings/CodeFormatting.vssettings -------------------------------------------------------------------------------- /Settings/CodeMaid.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Settings/CodeMaid.config -------------------------------------------------------------------------------- /Settings/csharpstyle.vssettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Settings/csharpstyle.vssettings -------------------------------------------------------------------------------- /Tests/Framework/Extensions/VectorExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Extensions/VectorExtensionsTests.cs -------------------------------------------------------------------------------- /Tests/Framework/GameHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/GameHelpers.cs -------------------------------------------------------------------------------- /Tests/Framework/Hierarchy/EntityReferenceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Hierarchy/EntityReferenceTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Hierarchy/EntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Hierarchy/EntityTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Hierarchy/SceneTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Hierarchy/SceneTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Input/InputSettingsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Input/InputSettingsTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Input/InputStateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Input/InputStateTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Physics/CircleColliderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Physics/CircleColliderTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Physics/LineColliderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Physics/LineColliderTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Physics/LineSegmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Physics/LineSegmentTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Physics/LineStripColliderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Physics/LineStripColliderTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Physics/PolygonColliderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Physics/PolygonColliderTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Physics/RaycastTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Physics/RaycastTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Physics/RectangleColliderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Physics/RectangleColliderTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Physics/SimplePhysicsLoopTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Physics/SimplePhysicsLoopTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Rendering/Assets/SpriteAnimationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Rendering/Assets/SpriteAnimationTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Rendering/CameraTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Rendering/CameraTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Rendering/QueueableSpriteAnimatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Rendering/QueueableSpriteAnimatorTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Rendering/RenderSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Rendering/RenderSystemTests.cs -------------------------------------------------------------------------------- /Tests/Framework/SceneTestContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/SceneTestContainer.cs -------------------------------------------------------------------------------- /Tests/Framework/Serialization/DesktopDataManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Serialization/DesktopDataManagerTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Serialization/SerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Serialization/SerializerTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Systems/FixedUpdateSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Systems/FixedUpdateSystemTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Systems/SystemReferenceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Systems/SystemReferenceTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Systems/UpdateSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Systems/UpdateSystemTests.cs -------------------------------------------------------------------------------- /Tests/Framework/TestRenderableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/TestRenderableEntity.cs -------------------------------------------------------------------------------- /Tests/Framework/TestUpdateableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/TestUpdateableEntity.cs -------------------------------------------------------------------------------- /Tests/Framework/TestableBoundable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/TestableBoundable.cs -------------------------------------------------------------------------------- /Tests/Framework/Tiles/GridContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Tiles/GridContainerTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Time/GameTimerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Time/GameTimerTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Transform/TransformableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Transform/TransformableTests.cs -------------------------------------------------------------------------------- /Tests/Framework/UI/Docking/DockableWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/UI/Docking/DockableWrapperTests.cs -------------------------------------------------------------------------------- /Tests/Framework/UI/Docking/DockingContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/UI/Docking/DockingContainerTests.cs -------------------------------------------------------------------------------- /Tests/Framework/Utility/BoundingAreaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Framework/Utility/BoundingAreaTests.cs -------------------------------------------------------------------------------- /Tests/Macabre2D.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/Tests/Macabre2D.Tests.csproj -------------------------------------------------------------------------------- /UI/AvaloniaInterop/ActiveWindowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/AvaloniaInterop/ActiveWindowHelper.cs -------------------------------------------------------------------------------- /UI/AvaloniaInterop/AvaloniaGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/AvaloniaInterop/AvaloniaGame.cs -------------------------------------------------------------------------------- /UI/AvaloniaInterop/Extensions/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/AvaloniaInterop/Extensions/ColorExtensions.cs -------------------------------------------------------------------------------- /UI/AvaloniaInterop/KeyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/AvaloniaInterop/KeyMap.cs -------------------------------------------------------------------------------- /UI/AvaloniaInterop/Macabre2D.UI.AvaloniaInterop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/AvaloniaInterop/Macabre2D.UI.AvaloniaInterop.csproj -------------------------------------------------------------------------------- /UI/AvaloniaInterop/MonoGameControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/AvaloniaInterop/MonoGameControl.cs -------------------------------------------------------------------------------- /UI/AvaloniaInterop/MonoGameKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/AvaloniaInterop/MonoGameKeyboard.cs -------------------------------------------------------------------------------- /UI/AvaloniaInterop/MonoGameMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/AvaloniaInterop/MonoGameMouse.cs -------------------------------------------------------------------------------- /UI/Common/CommonContainerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/CommonContainerExtension.cs -------------------------------------------------------------------------------- /UI/Common/Controls/AssetReferenceControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/AssetReferenceControl.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/AssetReferenceControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/AssetReferenceControl.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/BackgroundColorPicker.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/BackgroundColorPicker.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/BackgroundColorPicker.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/BackgroundColorPicker.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ColorPalette.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ColorPalette.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ColorPalette.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ColorPalette.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/FilteredContentTree.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/FilteredContentTree.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/FilteredContentTree.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/FilteredContentTree.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/FilteredSceneTree.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/FilteredSceneTree.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/FilteredSceneTree.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/FilteredSceneTree.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/InputActionControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/InputActionControl.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/InputActionControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/InputActionControl.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/SpriteDisplayCollectionControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/SpriteDisplayCollectionControl.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/SpriteDisplayCollectionControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/SpriteDisplayCollectionControl.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ThumbnailSizeToggle.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ThumbnailSizeToggle.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ThumbnailSizeToggle.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ThumbnailSizeToggle.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueCollectionsControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueCollectionsControl.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueCollectionsControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueCollectionsControl.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueControl.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/BaseNumericEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/BaseNumericEditor.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/BoolEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/BoolEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/BoolEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/BoolEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/BoundingAreaEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/BoundingAreaEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/BoundingAreaEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/BoundingAreaEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/ByteEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/ByteEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/ByteEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/ByteEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/ColorEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/ColorEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/ColorEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/ColorEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/DoubleEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/DoubleEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/DoubleEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/DoubleEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/EnumEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/EnumEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/EnumEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/EnumEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/FlagsEnumEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/FlagsEnumEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/FlagsEnumEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/FlagsEnumEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/FloatEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/FloatEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/FloatEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/FloatEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/AnimationEmitterReferenceEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/AnimationEmitterReferenceEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/AnimationEmitterReferenceEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/AnimationEmitterReferenceEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/AssetGuidEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/AssetGuidEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/AssetGuidEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/AssetGuidEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/AssetReferenceCollectionEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/AssetReferenceCollectionEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/AssetReferenceCollectionEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/AssetReferenceCollectionEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/AudioSettingsEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/AudioSettingsEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/AudioSettingsEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/AudioSettingsEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/BaseAssetReferenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/BaseAssetReferenceEditor.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/BaseSpriteSheetReferenceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/BaseSpriteSheetReferenceEditor.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/ColliderEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/ColliderEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/ColliderEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/ColliderEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/CollisionMapEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/CollisionMapEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/CollisionMapEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/CollisionMapEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/ColorOverrideEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/ColorOverrideEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/ColorOverrideEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/ColorOverrideEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/EntityGuidEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/EntityGuidEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/EntityGuidEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/EntityGuidEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/EntityReferenceCollectionEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/EntityReferenceCollectionEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/EntityReferenceCollectionEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/EntityReferenceCollectionEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/GameTimerEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/GameTimerEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/GameTimerEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/GameTimerEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/InputBindingsEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/InputBindingsEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/InputBindingsEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/InputBindingsEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/LayersOverrideEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/LayersOverrideEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/LayersOverrideEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/LayersOverrideEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/PaddingEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/PaddingEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/PaddingEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/PaddingEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/PhysicsMaterialGuidEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/PhysicsMaterialGuidEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/PhysicsMaterialGuidEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/PhysicsMaterialGuidEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/ProjectFontsEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/ProjectFontsEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/ProjectFontsEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/ProjectFontsEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/RelativeVerticesEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/RelativeVerticesEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/RelativeVerticesEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/RelativeVerticesEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/RenderPriorityOverrideEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/RenderPriorityOverrideEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/RenderPriorityOverrideEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/RenderPriorityOverrideEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/RenderSettingsEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/RenderSettingsEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/RenderSettingsEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/RenderSettingsEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/RenderStepReferenceEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/RenderStepReferenceEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/RenderStepReferenceEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/RenderStepReferenceEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SpriteReferenceEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SpriteReferenceEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SpriteReferenceEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SpriteReferenceEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SpriteSheetAssetGuidReferenceEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SpriteSheetAssetGuidReferenceEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SpriteSheetAssetGuidReferenceEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SpriteSheetAssetGuidReferenceEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SpriteSheetAssetReferenceEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SpriteSheetAssetReferenceEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SpriteSheetAssetReferenceEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SpriteSheetAssetReferenceEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SpriteSheetReferenceEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SpriteSheetReferenceEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SpriteSheetReferenceEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SpriteSheetReferenceEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SpriteSheetSpriteIndexReferenceEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SpriteSheetSpriteIndexReferenceEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SpriteSheetSpriteIndexReferenceEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SpriteSheetSpriteIndexReferenceEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SystemReferenceEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SystemReferenceEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/SystemReferenceEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/SystemReferenceEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Framework/ValueOverrideEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Framework/ValueOverrideEditor.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/IntEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/IntEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/IntEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/IntEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/LongEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/LongEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/LongEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/LongEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/PointEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/PointEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/PointEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/PointEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/PredefinedIntEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/PredefinedIntEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/PredefinedIntEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/PredefinedIntEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Project/InputActionEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Project/InputActionEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Project/InputActionEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Project/InputActionEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Project/LayersEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Project/LayersEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Project/LayersEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Project/LayersEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/ResourceStringEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/ResourceStringEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/ResourceStringEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/ResourceStringEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/ShortEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/ShortEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/ShortEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/ShortEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/StringEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/StringEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/StringEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/StringEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/TypeEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/TypeEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/TypeEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/TypeEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/UIntEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/UIntEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/UIntEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/UIntEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/ULongEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/ULongEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/ULongEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/ULongEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/UShortEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/UShortEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/UShortEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/UShortEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/ValueEditorControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/ValueEditorControl.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Vector2Editor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Vector2Editor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/Vector2Editor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/Vector2Editor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/VersionEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/VersionEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueEditors/VersionEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueEditors/VersionEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueInfo/ContentDirectoryInfoControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueInfo/ContentDirectoryInfoControl.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueInfo/ContentDirectoryInfoControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueInfo/ContentDirectoryInfoControl.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueInfo/ContentFileInfoControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueInfo/ContentFileInfoControl.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueInfo/ContentFileInfoControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueInfo/ContentFileInfoControl.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/ValueInfo/SpriteSheetInfoControl.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueInfo/SpriteSheetInfoControl.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/ValueInfo/SpriteSheetInfoControl.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/ValueInfo/SpriteSheetInfoControl.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/VolumeCategoryEditor.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/VolumeCategoryEditor.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/VolumeCategoryEditor.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/VolumeCategoryEditor.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Controls/VolumeSlider.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/VolumeSlider.axaml -------------------------------------------------------------------------------- /UI/Common/Controls/VolumeSlider.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Controls/VolumeSlider.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Converters/AssetToIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/AssetToIconConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/CollectionHasItemsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/CollectionHasItemsConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/ColorDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/ColorDescriptionConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/GizmoKindToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/GizmoKindToBoolConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/LayersToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/LayersToBoolConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/MetadataToNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/MetadataToNameConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/MonoGameColorToAvaloniaBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/MonoGameColorToAvaloniaBrushConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/PhysicsMaterialToCaptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/PhysicsMaterialToCaptionConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/PredefinedIntegerToDisplayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/PredefinedIntegerToDisplayConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/SpriteIndexToBitmapConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/SpriteIndexToBitmapConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/ThumbnailSizeToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/ThumbnailSizeToBoolConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/ThumbnailSizeToPixelSizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/ThumbnailSizeToPixelSizeConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/ToDisplayNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/ToDisplayNameConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/ToTypeNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/ToTypeNameConverter.cs -------------------------------------------------------------------------------- /UI/Common/Converters/ValueControlCollectionVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Converters/ValueControlCollectionVisibilityConverter.cs -------------------------------------------------------------------------------- /UI/Common/Helpers/MenuItemHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Helpers/MenuItemHelper.cs -------------------------------------------------------------------------------- /UI/Common/Helpers/TreeViewHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Helpers/TreeViewHelper.cs -------------------------------------------------------------------------------- /UI/Common/Macabre2D.UI.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Macabre2D.UI.Common.csproj -------------------------------------------------------------------------------- /UI/Common/Models/Content/BuildContentArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Content/BuildContentArguments.cs -------------------------------------------------------------------------------- /UI/Common/Models/Content/ContentDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Content/ContentDirectory.cs -------------------------------------------------------------------------------- /UI/Common/Models/Content/ContentFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Content/ContentFile.cs -------------------------------------------------------------------------------- /UI/Common/Models/Content/ContentNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Content/ContentNode.cs -------------------------------------------------------------------------------- /UI/Common/Models/Content/FilteredContentWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Content/FilteredContentWrapper.cs -------------------------------------------------------------------------------- /UI/Common/Models/Content/ProjectNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Content/ProjectNode.cs -------------------------------------------------------------------------------- /UI/Common/Models/Content/RootContentDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Content/RootContentDirectory.cs -------------------------------------------------------------------------------- /UI/Common/Models/Content/SpriteSheetContentFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Content/SpriteSheetContentFile.cs -------------------------------------------------------------------------------- /UI/Common/Models/EditorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/EditorSettings.cs -------------------------------------------------------------------------------- /UI/Common/Models/EditorTabs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/EditorTabs.cs -------------------------------------------------------------------------------- /UI/Common/Models/FilteredEntityWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/FilteredEntityWrapper.cs -------------------------------------------------------------------------------- /UI/Common/Models/IValueControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/IValueControl.cs -------------------------------------------------------------------------------- /UI/Common/Models/IValueEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/IValueEditor.cs -------------------------------------------------------------------------------- /UI/Common/Models/IValueInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/IValueInfo.cs -------------------------------------------------------------------------------- /UI/Common/Models/MenuItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/MenuItemModel.cs -------------------------------------------------------------------------------- /UI/Common/Models/NotifyingWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/NotifyingWrapper.cs -------------------------------------------------------------------------------- /UI/Common/Models/ProjectFontModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/ProjectFontModel.cs -------------------------------------------------------------------------------- /UI/Common/Models/Rendering/AutoTileIndexModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Rendering/AutoTileIndexModel.cs -------------------------------------------------------------------------------- /UI/Common/Models/Rendering/BaseSpriteSheetIndexModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Rendering/BaseSpriteSheetIndexModel.cs -------------------------------------------------------------------------------- /UI/Common/Models/Rendering/SpriteDisplayCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Rendering/SpriteDisplayCollection.cs -------------------------------------------------------------------------------- /UI/Common/Models/Rendering/SpriteDisplayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Rendering/SpriteDisplayModel.cs -------------------------------------------------------------------------------- /UI/Common/Models/Rendering/SpriteSheetAssetDisplayCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Rendering/SpriteSheetAssetDisplayCollection.cs -------------------------------------------------------------------------------- /UI/Common/Models/Rendering/SpriteSheetFontIndexModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Rendering/SpriteSheetFontIndexModel.cs -------------------------------------------------------------------------------- /UI/Common/Models/Rendering/ThumbnailSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/Rendering/ThumbnailSize.cs -------------------------------------------------------------------------------- /UI/Common/Models/ResourceEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/ResourceEntry.cs -------------------------------------------------------------------------------- /UI/Common/Models/SpriteFontLayoutResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/SpriteFontLayoutResult.cs -------------------------------------------------------------------------------- /UI/Common/Models/ValueControlCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/ValueControlCollection.cs -------------------------------------------------------------------------------- /UI/Common/Models/ValueControlDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Models/ValueControlDependencies.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/EditorGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/EditorGame.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Entities/BaseAxisGizmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Entities/BaseAxisGizmo.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Entities/BoundingAreaAndColliderDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Entities/BoundingAreaAndColliderDrawer.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Entities/CameraController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Entities/CameraController.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Entities/EditorCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Entities/EditorCamera.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Entities/EditorGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Entities/EditorGrid.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Entities/IGizmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Entities/IGizmo.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Entities/SelectionDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Entities/SelectionDisplay.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Entities/SelectorGizmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Entities/SelectorGizmo.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Entities/TileGizmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Entities/TileGizmo.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Entities/TranslationGizmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Entities/TranslationGizmo.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/GizmoKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/GizmoKind.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Systems/EditorRenderSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Systems/EditorRenderSystem.cs -------------------------------------------------------------------------------- /UI/Common/MonoGame/Systems/EditorUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/MonoGame/Systems/EditorUpdateSystem.cs -------------------------------------------------------------------------------- /UI/Common/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Resolver.cs -------------------------------------------------------------------------------- /UI/Common/Services/AssemblyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/AssemblyService.cs -------------------------------------------------------------------------------- /UI/Common/Services/AssetSelectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/AssetSelectionService.cs -------------------------------------------------------------------------------- /UI/Common/Services/BuildService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/BuildService.cs -------------------------------------------------------------------------------- /UI/Common/Services/BusyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/BusyService.cs -------------------------------------------------------------------------------- /UI/Common/Services/CommonDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/CommonDialogService.cs -------------------------------------------------------------------------------- /UI/Common/Services/ContentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/ContentService.cs -------------------------------------------------------------------------------- /UI/Common/Services/EditorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/EditorService.cs -------------------------------------------------------------------------------- /UI/Common/Services/EditorSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/EditorSettingsService.cs -------------------------------------------------------------------------------- /UI/Common/Services/EntityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/EntityService.cs -------------------------------------------------------------------------------- /UI/Common/Services/PathService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/PathService.cs -------------------------------------------------------------------------------- /UI/Common/Services/ProjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/ProjectService.cs -------------------------------------------------------------------------------- /UI/Common/Services/SaveService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/SaveService.cs -------------------------------------------------------------------------------- /UI/Common/Services/SceneService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/SceneService.cs -------------------------------------------------------------------------------- /UI/Common/Services/SelectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/SelectionService.cs -------------------------------------------------------------------------------- /UI/Common/Services/SystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/SystemService.cs -------------------------------------------------------------------------------- /UI/Common/Services/ValueControlService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Services/ValueControlService.cs -------------------------------------------------------------------------------- /UI/Common/Theme/Controls/Border.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Theme/Controls/Border.axaml -------------------------------------------------------------------------------- /UI/Common/Theme/Controls/MenuItemFromModel.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Theme/Controls/MenuItemFromModel.axaml -------------------------------------------------------------------------------- /UI/Common/Theme/Controls/ScrollBar.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Theme/Controls/ScrollBar.axaml -------------------------------------------------------------------------------- /UI/Common/Theme/Controls/SpriteListBoxItem.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Theme/Controls/SpriteListBoxItem.axaml -------------------------------------------------------------------------------- /UI/Common/Theme/IconPaths.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Theme/IconPaths.axaml -------------------------------------------------------------------------------- /UI/Common/Theme/Theme.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Theme/Theme.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Assets/AutoTileSetEditorView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/AutoTileSetEditorView.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Assets/AutoTileSetEditorView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/AutoTileSetEditorView.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Assets/AutoTileSetEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/AutoTileSetEditorViewModel.cs -------------------------------------------------------------------------------- /UI/Common/Views/Assets/SpriteAnimationEditorView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/SpriteAnimationEditorView.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Assets/SpriteAnimationEditorView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/SpriteAnimationEditorView.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Assets/SpriteAnimationEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/SpriteAnimationEditorViewModel.cs -------------------------------------------------------------------------------- /UI/Common/Views/Assets/SpriteSheetFontEditorView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/SpriteSheetFontEditorView.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Assets/SpriteSheetFontEditorView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/SpriteSheetFontEditorView.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Assets/SpriteSheetFontEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/SpriteSheetFontEditorViewModel.cs -------------------------------------------------------------------------------- /UI/Common/Views/Assets/SpriteSheetIconSetEditorView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/SpriteSheetIconSetEditorView.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Assets/SpriteSheetIconSetEditorView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/SpriteSheetIconSetEditorView.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Assets/SpriteSheetIconSetEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Assets/SpriteSheetIconSetEditorViewModel.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/BaseFilterDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/BaseFilterDialogViewModel.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/ContentSelectionDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/ContentSelectionDialog.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/ContentSelectionDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/ContentSelectionDialog.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/ContentSelectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/ContentSelectionViewModel.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/EntitySelectionDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/EntitySelectionDialog.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/EntitySelectionDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/EntitySelectionDialog.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/EntitySelectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/EntitySelectionViewModel.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/KeySelectDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/KeySelectDialog.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/KeySelectDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/KeySelectDialog.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/LicenseDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/LicenseDialog.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/LicenseDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/LicenseDialog.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/ResourceSelectionDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/ResourceSelectionDialog.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/ResourceSelectionDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/ResourceSelectionDialog.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/ResourceSelectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/ResourceSelectionViewModel.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/SpriteFontLayoutDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/SpriteFontLayoutDialog.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/SpriteFontLayoutDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/SpriteFontLayoutDialog.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/SpriteFontLayoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/SpriteFontLayoutViewModel.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/SystemSelectionDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/SystemSelectionDialog.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/SystemSelectionDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/SystemSelectionDialog.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/SystemSelectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/SystemSelectionViewModel.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/TextListDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/TextListDialog.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/TextListDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/TextListDialog.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/TypeSelectionDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/TypeSelectionDialog.axaml -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/TypeSelectionDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/TypeSelectionDialog.axaml.cs -------------------------------------------------------------------------------- /UI/Common/Views/Dialogs/TypeSelectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/Dialogs/TypeSelectionViewModel.cs -------------------------------------------------------------------------------- /UI/Common/Views/FilterableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/Views/FilterableViewModel.cs -------------------------------------------------------------------------------- /UI/Common/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Common/icon.ico -------------------------------------------------------------------------------- /UI/ContentBuilder/Macabre2D.UI.ContentBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/ContentBuilder/Macabre2D.UI.ContentBuilder.csproj -------------------------------------------------------------------------------- /UI/ContentBuilder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/ContentBuilder/Program.cs -------------------------------------------------------------------------------- /UI/Editor/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/App.axaml -------------------------------------------------------------------------------- /UI/Editor/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/App.axaml.cs -------------------------------------------------------------------------------- /UI/Editor/EditorContainerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/EditorContainerExtension.cs -------------------------------------------------------------------------------- /UI/Editor/Macabre2D.UI.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Macabre2D.UI.Editor.csproj -------------------------------------------------------------------------------- /UI/Editor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Program.cs -------------------------------------------------------------------------------- /UI/Editor/Services/LocalDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Services/LocalDialogService.cs -------------------------------------------------------------------------------- /UI/Editor/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/ViewLocator.cs -------------------------------------------------------------------------------- /UI/Editor/Views/Dialogs/SplashScreen.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/Dialogs/SplashScreen.axaml -------------------------------------------------------------------------------- /UI/Editor/Views/Dialogs/SplashScreen.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/Dialogs/SplashScreen.axaml.cs -------------------------------------------------------------------------------- /UI/Editor/Views/Dialogs/SpriteSelectionDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/Dialogs/SpriteSelectionDialog.axaml -------------------------------------------------------------------------------- /UI/Editor/Views/Dialogs/SpriteSelectionDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/Dialogs/SpriteSelectionDialog.axaml.cs -------------------------------------------------------------------------------- /UI/Editor/Views/Dialogs/SpriteSelectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/Dialogs/SpriteSelectionViewModel.cs -------------------------------------------------------------------------------- /UI/Editor/Views/Dialogs/SpriteSheetAssetSelectionDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/Dialogs/SpriteSheetAssetSelectionDialog.axaml -------------------------------------------------------------------------------- /UI/Editor/Views/Dialogs/SpriteSheetAssetSelectionDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/Dialogs/SpriteSheetAssetSelectionDialog.axaml.cs -------------------------------------------------------------------------------- /UI/Editor/Views/Dialogs/SpriteSheetAssetSelectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/Dialogs/SpriteSheetAssetSelectionViewModel.cs -------------------------------------------------------------------------------- /UI/Editor/Views/GizmoSelectionView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/GizmoSelectionView.axaml -------------------------------------------------------------------------------- /UI/Editor/Views/GizmoSelectionView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/GizmoSelectionView.axaml.cs -------------------------------------------------------------------------------- /UI/Editor/Views/GizmoSelectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/GizmoSelectionViewModel.cs -------------------------------------------------------------------------------- /UI/Editor/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/MainWindow.axaml -------------------------------------------------------------------------------- /UI/Editor/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /UI/Editor/Views/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/MainWindowViewModel.cs -------------------------------------------------------------------------------- /UI/Editor/Views/ProjectEditorView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/ProjectEditorView.axaml -------------------------------------------------------------------------------- /UI/Editor/Views/ProjectEditorView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/ProjectEditorView.axaml.cs -------------------------------------------------------------------------------- /UI/Editor/Views/ProjectEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/ProjectEditorViewModel.cs -------------------------------------------------------------------------------- /UI/Editor/Views/ProjectTreeView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/ProjectTreeView.axaml -------------------------------------------------------------------------------- /UI/Editor/Views/ProjectTreeView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/ProjectTreeView.axaml.cs -------------------------------------------------------------------------------- /UI/Editor/Views/ProjectTreeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/ProjectTreeViewModel.cs -------------------------------------------------------------------------------- /UI/Editor/Views/SceneEditorView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/SceneEditorView.axaml -------------------------------------------------------------------------------- /UI/Editor/Views/SceneEditorView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/SceneEditorView.axaml.cs -------------------------------------------------------------------------------- /UI/Editor/Views/SceneEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/SceneEditorViewModel.cs -------------------------------------------------------------------------------- /UI/Editor/Views/SceneTreeView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/SceneTreeView.axaml -------------------------------------------------------------------------------- /UI/Editor/Views/SceneTreeView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/SceneTreeView.axaml.cs -------------------------------------------------------------------------------- /UI/Editor/Views/SceneTreeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/Views/SceneTreeViewModel.cs -------------------------------------------------------------------------------- /UI/Editor/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Editor/nuget.config -------------------------------------------------------------------------------- /UI/Tests/Common/Models/Content/ContentDirectoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Common/Models/Content/ContentDirectoryTests.cs -------------------------------------------------------------------------------- /UI/Tests/Common/Models/Content/ContentNodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Common/Models/Content/ContentNodeTests.cs -------------------------------------------------------------------------------- /UI/Tests/Common/Models/Content/TestFileSystemService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Common/Models/Content/TestFileSystemService.cs -------------------------------------------------------------------------------- /UI/Tests/Common/Services/BuildServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Common/Services/BuildServiceTests.cs -------------------------------------------------------------------------------- /UI/Tests/Common/Services/ProjectServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Common/Services/ProjectServiceTests.cs -------------------------------------------------------------------------------- /UI/Tests/Common/Services/SaveServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Common/Services/SaveServiceTests.cs -------------------------------------------------------------------------------- /UI/Tests/Common/Services/SceneServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Common/Services/SceneServiceTests.cs -------------------------------------------------------------------------------- /UI/Tests/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Content/Content.mgcb -------------------------------------------------------------------------------- /UI/Tests/Content/League Mono.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Content/League Mono.otf -------------------------------------------------------------------------------- /UI/Tests/Content/League Mono.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Content/League Mono.spritefont -------------------------------------------------------------------------------- /UI/Tests/Content/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Content/skull.png -------------------------------------------------------------------------------- /UI/Tests/Macabre2D.UI.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/UI/Tests/Macabre2D.UI.Tests.csproj -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Macabresoft/Macabre2D/HEAD/icon.png --------------------------------------------------------------------------------