├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── create-release.yml │ └── pull-request-test.yml ├── .gitignore ├── CHANGELOG.md ├── CODING_GUIDELINES.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── FNA.Extended.sln ├── KNI.Extended.sln ├── LICENSE ├── MonoGame.Extended.sln ├── README.md ├── benchmarks ├── Directory.Build.props ├── MonoGame.Extended.Benchmarks.Collisions │ ├── DifferentPoolSizeCollision.cs │ ├── FNA.Extended.Benchmarks.Collisions.csproj │ ├── KNI.Extended.Benchmarks.Collisions.csproj │ ├── MonoGame.Extended.Benchmarks.Collisions.csproj │ ├── Program.cs │ ├── SpaceAlgorithms.cs │ └── Utils │ │ └── Collider.cs └── MonoGame.Extended.Benchmarks │ ├── FNA.Extended.Benchmarks.csproj │ ├── KNI.Extended.Benchmarks.csproj │ ├── Matrix3x2Benchmarks.cs │ ├── MonoGame.Extended.Benchmarks.csproj │ └── Program.cs ├── logos ├── github-social-media-large.png ├── logo-banner-1600.png ├── logo-banner-800.png ├── logo-drop-shadow-512.png ├── logo-nuget-128.png ├── logo-nuget-32.png ├── logo-nuget-400.png ├── logo-square-1024.png ├── logo-square-128.png ├── logo-square-32.png ├── logo-square-512.png ├── logo-square-64.png └── logo-square.svg ├── source ├── Directory.Build.props ├── MonoGame.Extended.Content.Pipeline │ ├── Animations │ │ ├── AstridAnimatorAnimation.cs │ │ ├── AstridAnimatorFile.cs │ │ ├── AstridAnimatorImporter.cs │ │ ├── AstridAnimatorProcessor.cs │ │ ├── AstridAnimatorProcessorResult.cs │ │ └── AstridAnimatorWriter.cs │ ├── BitmapFonts │ │ ├── BitmapFontImporter.cs │ │ ├── BitmapFontProcessor.cs │ │ ├── BitmapFontProcessorResult.cs │ │ └── BitmapFontWriter.cs │ ├── ContentImporterContextExtensions.cs │ ├── ContentImporterResult.cs │ ├── ContentItem.cs │ ├── ContentLogger.cs │ ├── ContentWriterExtensions.cs │ ├── Json │ │ ├── JsonContentImporter.cs │ │ ├── JsonContentProcessor.cs │ │ ├── JsonContentProcessorResult.cs │ │ └── JsonContentTypeWriter.cs │ ├── KNI.Extended.Content.Pipeline.csproj │ ├── MonoGame.Extended.Content.Pipeline.csproj │ ├── MonoGame.Extended.Content.Pipeline.targets │ ├── Particles │ │ ├── ParticleEffectImporter.cs │ │ ├── ParticleEffectProcessor.cs │ │ ├── ParticleEffectProcessorResult.cs │ │ ├── ParticleEffectWriter.cs │ │ └── ParticleFileContent.cs │ ├── PathExtensions.cs │ ├── TextureAtlases │ │ ├── TexturePackerJsonImporter.cs │ │ ├── TexturePackerProcessor.cs │ │ ├── TexturePackerProcessorResult.cs │ │ └── TexturePackerWriter.cs │ ├── Tiled │ │ ├── ContentWriterExtensions.cs │ │ ├── TiledContentItem.cs │ │ ├── TiledMapContentItem.cs │ │ ├── TiledMapImporter.cs │ │ ├── TiledMapObjectTemplateImporter.cs │ │ ├── TiledMapProcessor.cs │ │ ├── TiledMapTilesetContentItem.cs │ │ ├── TiledMapTilesetImporter.cs │ │ ├── TiledMapTilesetProcessor.cs │ │ ├── TiledMapTilesetWriter.cs │ │ └── TiledMapWriter.cs │ └── readme.txt └── MonoGame.Extended │ ├── .config │ └── dotnet-tools.json │ ├── AnimationComponent.cs │ ├── Animations │ ├── AnimationController.cs │ ├── AnimationEvent.cs │ ├── AnimationEventTrigger.cs │ ├── IAnimation.cs │ ├── IAnimationController.cs │ └── IAnimationFrame.cs │ ├── BitmapFonts │ ├── BitmapFont.Extensions.cs │ ├── BitmapFont.cs │ └── BitmapFontCharacter.cs │ ├── Camera.cs │ ├── Collections │ ├── Bag.cs │ ├── Deque.cs │ ├── DictionaryExtensions.cs │ ├── IObservableCollection.cs │ ├── IPoolable.cs │ ├── ItemEventArgs.cs │ ├── KeyedCollection.cs │ ├── ListExtensions.cs │ ├── ObjectPool.cs │ ├── ObservableCollection.cs │ └── Pool.cs │ ├── Collisions │ ├── CollisionComponent.cs │ ├── CollisionEventArgs.cs │ ├── ICollisionActor.cs │ ├── ISpaceAlgorithm.cs │ ├── Layers │ │ ├── Layer.cs │ │ └── UndefinedLayerException.cs │ ├── QuadTree │ │ ├── QuadTree.cs │ │ ├── QuadTreeData.cs │ │ └── QuadTreeSpace.cs │ └── SpatialHash.cs │ ├── ColorExtensions.cs │ ├── ColorHelper.cs │ ├── CompileEffects.targets │ ├── Content │ ├── BitmapFonts │ │ ├── BitmapFontFileContent.cs │ │ └── BitmapFontFileReader.cs │ ├── ContentManagerExtensions.cs │ ├── ContentReaderExtensions.cs │ ├── ContentReaders │ │ ├── BitmapFontContentReader.cs │ │ ├── JsonContentTypeReader.cs │ │ ├── ParticleEffectContentReader.cs │ │ └── Texture2DAtlasReader.cs │ ├── ExtendedContentManager.cs │ ├── TexturePacker │ │ ├── TexturePackerFileContent.cs │ │ └── TexturePackerFileReader.cs │ └── Tiled │ │ ├── TiledMapContent.cs │ │ ├── TiledMapEllipseContent.cs │ │ ├── TiledMapGroupLayerContent.cs │ │ ├── TiledMapImageContent.cs │ │ ├── TiledMapImageLayerContent.cs │ │ ├── TiledMapLayerContent.cs │ │ ├── TiledMapLayerModelContent.cs │ │ ├── TiledMapObjectContent.cs │ │ ├── TiledMapObjectDrawOrderContent.cs │ │ ├── TiledMapObjectLayerContent.cs │ │ ├── TiledMapObjectTemplateContent.cs │ │ ├── TiledMapOrientationContent.cs │ │ ├── TiledMapPolygonContent.cs │ │ ├── TiledMapPolylineContent.cs │ │ ├── TiledMapPropertyContent.cs │ │ ├── TiledMapStaggerAxisContent.cs │ │ ├── TiledMapStaggerIndexContent.cs │ │ ├── TiledMapTileContent.cs │ │ ├── TiledMapTileDrawOrderContent.cs │ │ ├── TiledMapTileLayerContent.cs │ │ ├── TiledMapTileLayerDataChunkContent.cs │ │ ├── TiledMapTileLayerDataContent.cs │ │ ├── TiledMapTileOffsetContent.cs │ │ ├── TiledMapTilesetContent.cs │ │ ├── TiledMapTilesetGridContent.cs │ │ ├── TiledMapTilesetTileAnimationFrameContent.cs │ │ └── TiledMapTilesetTileContent.cs │ ├── ECS │ ├── Aspect.cs │ ├── AspectBuilder.cs │ ├── BitArrayExtensions.cs │ ├── ComponentManager.cs │ ├── ComponentMapper.cs │ ├── ComponentType.cs │ ├── Entity.cs │ ├── EntityManager.cs │ ├── EntitySubscription.cs │ ├── Systems │ │ ├── DrawSystem.cs │ │ ├── EntityDrawSystem.cs │ │ ├── EntityProcessingSystem.cs │ │ ├── EntitySystem.cs │ │ ├── EntityUpdateSystem.cs │ │ ├── ISystem.cs │ │ └── UpdateSystem.cs │ ├── World.cs │ └── WorldBuilder.cs │ ├── FNA.Extended.csproj │ ├── FramesPerSecondCounter.cs │ ├── FramesPerSecondCounterComponent.cs │ ├── GameComponentCollectionExtensions.cs │ ├── GameTimeExtensions.cs │ ├── Graphics │ ├── AnimatedSprite.cs │ ├── Batcher.cs │ ├── Batcher2D.cs │ ├── Effects │ │ ├── DefaultEffect.cs │ │ ├── EffectResource.cs │ │ ├── ITextureEffect.cs │ │ ├── MatrixChainEffect.cs │ │ └── Resources │ │ │ ├── DefaultEffect.dx11.mgfxo │ │ │ ├── DefaultEffect.fx │ │ │ ├── DefaultEffect.ogl.mgfxo │ │ │ ├── Macros.fxh │ │ │ └── Structures.fxh │ ├── FlipFlags.cs │ ├── Geometry │ │ ├── GeometryBuilder.cs │ │ └── GeometryBuilder2D.cs │ ├── GraphicsDevice.Extensions.cs │ ├── IBatchDrawCallInfo.cs │ ├── IMatrixChainEffect.cs │ ├── NinePatch.cs │ ├── PrimitiveTypeExtensions.cs │ ├── RenderTarget2DExtensions.cs │ ├── Sprite.cs │ ├── SpriteBatch.Extensions.cs │ ├── SpriteSheet.cs │ ├── SpriteSheetAnimation.cs │ ├── SpriteSheetAnimationBuilder.cs │ ├── SpriteSheetAnimationFrame.cs │ ├── Texture2DAtlas.cs │ ├── Texture2DRegion.Extensions.cs │ └── Texture2DRegion.cs │ ├── HslColor.cs │ ├── IColorable.cs │ ├── IEquatableByRef.cs │ ├── IMovable.cs │ ├── IRectangular.cs │ ├── IRotatable.cs │ ├── IScalable.cs │ ├── ISizable.cs │ ├── Input │ ├── ExtendedPlayerIndex.cs │ ├── InputListeners │ │ ├── GamePadEventArgs.cs │ │ ├── GamePadListener.cs │ │ ├── GamePadListenerSettings.cs │ │ ├── IInputService.cs │ │ ├── InputListener.cs │ │ ├── InputListenerComponent.cs │ │ ├── InputListenerSettings.cs │ │ ├── KeyboardEventArgs.cs │ │ ├── KeyboardListener.cs │ │ ├── KeyboardListenerSettings.cs │ │ ├── KeyboardModifiers.cs │ │ ├── MouseEventArgs.cs │ │ ├── MouseListener.cs │ │ ├── MouseListenerSettings.cs │ │ ├── TouchEventArgs.cs │ │ ├── TouchListener.cs │ │ └── TouchListenerSettings.cs │ ├── KeyboardExtended.cs │ ├── KeyboardState.Extensions.cs │ ├── KeyboardStateExtended.cs │ ├── MouseButton.cs │ ├── MouseExtended.cs │ └── MouseStateExtended.cs │ ├── KNI.Extended.csproj │ ├── Math │ ├── Angle.cs │ ├── BoundingRectangle.cs │ ├── CircleF.cs │ ├── EllipseF.cs │ ├── FastRandom.cs │ ├── FloatHelper.cs │ ├── Interval.cs │ ├── Matrix3x2.cs │ ├── MatrixExtensions.cs │ ├── OrientedRectangle.cs │ ├── PrimitivesHelper.cs │ ├── RandomExtensions.cs │ ├── Range.cs │ ├── Ray2.cs │ ├── RectangleF.cs │ ├── Segment2.cs │ ├── ShapeExtensions.cs │ ├── ShapeF.cs │ ├── Size.cs │ ├── SizeF.cs │ ├── Thickness.cs │ ├── Triangulation │ │ ├── CyclicalList.cs │ │ ├── IndexableCyclicalLinkedList.cs │ │ ├── LineSegment.cs │ │ ├── Triangle.cs │ │ ├── Triangulator.cs │ │ └── Vertex.cs │ └── Vector2Extensions.cs │ ├── MathExtended.cs │ ├── MonoGame.Extended.csproj │ ├── MonoGame.Extended.csproj.DotSettings │ ├── OrthographicCamera.cs │ ├── Particles │ ├── Data │ │ ├── Particle.cs │ │ ├── ParticleColorParameter.cs │ │ ├── ParticleFloatParameter.cs │ │ ├── ParticleInt32Parameter.cs │ │ ├── ParticleReleaseParameters.cs │ │ ├── ParticleValueKind.cs │ │ └── ParticleVector2Parameter.cs │ ├── Modifiers │ │ ├── AgeModifier.cs │ │ ├── Containers │ │ │ ├── CircleContainerModifier.cs │ │ │ ├── RectangleContainerModifier.cs │ │ │ └── RectangleLoopContainerModifier.cs │ │ ├── DragModifier.cs │ │ ├── Interpolators │ │ │ ├── ColorInterpolator.cs │ │ │ ├── HueInterpolator.cs │ │ │ ├── Interpolator.cs │ │ │ ├── InterpolatorOfT.cs │ │ │ ├── OpacityInterpolator.cs │ │ │ ├── RotationInterpolator.cs │ │ │ ├── ScaleInterpolator.cs │ │ │ └── VelocityInterpolator.cs │ │ ├── LinearGravityModifier.cs │ │ ├── Modifier.cs │ │ ├── ModifierExecutionStrategy.cs │ │ ├── OpacityFastFadeModifier.cs │ │ ├── RotationModifier.cs │ │ ├── VelocityColorModifier.cs │ │ ├── VelocityModifier.cs │ │ └── VortexModifier.cs │ ├── ParticleBuffer.cs │ ├── ParticleEffect.cs │ ├── ParticleEffectReader.cs │ ├── ParticleEffectSerializer.cs │ ├── ParticleEffectWriter.cs │ ├── ParticleEmitter.cs │ ├── ParticleIterator.cs │ ├── ParticleRenderingOrder.cs │ ├── Primatives │ │ └── LineSegment.cs │ ├── Profiles │ │ ├── BoxFillProfile.cs │ │ ├── BoxProfile.cs │ │ ├── BoxUniformProfile.cs │ │ ├── CircleProfile.cs │ │ ├── CircleRadiation.cs │ │ ├── LineProfile.cs │ │ ├── LineRadiation.cs │ │ ├── PointProfile.cs │ │ ├── Profile.cs │ │ ├── RingProfile.cs │ │ └── SprayProfile.cs │ └── SpriteBatchExtensions.ParticleEfffect.cs │ ├── Rectangle.Extensions.cs │ ├── RectangleF.Extensions.cs │ ├── Screens │ ├── GameScreen.cs │ ├── Screen.cs │ ├── ScreenManager.cs │ └── Transitions │ │ ├── ExpandTransition.cs │ │ ├── FadeTransition.cs │ │ └── Transition.cs │ ├── Serialization │ ├── Json │ │ ├── BaseTypeJsonConverter.cs │ │ ├── ColorJsonConverter.cs │ │ ├── ContentManagerJsonConverter.cs │ │ ├── FloatStringConverter.cs │ │ ├── HslColorJsonConverter.cs │ │ ├── IntervalJsonConverter.cs │ │ ├── JsonContentLoader.cs │ │ ├── MonoGameJsonSerializerOptionsProvider.cs │ │ ├── NinePatchJsonConverter.cs │ │ ├── RangeJsonConverter.cs │ │ ├── RectangleFJsonConverter.cs │ │ ├── Size2JsonConverter.cs │ │ ├── SizeJsonConverter.cs │ │ ├── TextContentLoader.cs │ │ ├── TextureAtlasJsonConverter.cs │ │ ├── TextureRegion2DJsonConverter.cs │ │ ├── TextureRegionService.cs │ │ ├── ThicknessJsonConverter.cs │ │ ├── Utf8JsonReaderExtensions.cs │ │ └── Vector2JsonConverter.cs │ └── Xml │ │ ├── XmlNode.Extensions.cs │ │ ├── XmlReaderExtensions.cs │ │ └── XmlWriterExtensions.cs │ ├── Shapes │ ├── Polygon.cs │ └── Polyline.cs │ ├── SimpleDrawableGameComponent.cs │ ├── SimpleGameComponent.cs │ ├── Tiled │ ├── Renderers │ │ ├── TiledMapAnimatedLayerModel.cs │ │ ├── TiledMapAnimatedLayerModelBuilder.cs │ │ ├── TiledMapEffect.cs │ │ ├── TiledMapLayerModel.cs │ │ ├── TiledMapLayerModelBuilder.cs │ │ ├── TiledMapModel.cs │ │ ├── TiledMapModelBuilder.cs │ │ ├── TiledMapRenderer.cs │ │ ├── TiledMapStaticLayerModel.cs │ │ └── TiledMapStaticLayerModelBuilder.cs │ ├── TiledMap.cs │ ├── TiledMapEllipseObject.cs │ ├── TiledMapGroupLayer.cs │ ├── TiledMapHelper.cs │ ├── TiledMapImageLayer.cs │ ├── TiledMapLayer.cs │ ├── TiledMapLayerType.cs │ ├── TiledMapObject.cs │ ├── TiledMapObjectDrawOrder.cs │ ├── TiledMapObjectLayer.cs │ ├── TiledMapObjectType.cs │ ├── TiledMapOrientation.cs │ ├── TiledMapPolygonObject.cs │ ├── TiledMapPolylineObject.cs │ ├── TiledMapProperties.cs │ ├── TiledMapPropertyValue.cs │ ├── TiledMapReader.cs │ ├── TiledMapRectangleObject.cs │ ├── TiledMapTile.cs │ ├── TiledMapTileDrawOrder.cs │ ├── TiledMapTileFlipFlags.cs │ ├── TiledMapTileLayer.cs │ ├── TiledMapTileObject.cs │ ├── TiledMapTileset.cs │ ├── TiledMapTilesetAnimatedTile.cs │ ├── TiledMapTilesetReader.cs │ ├── TiledMapTilesetTile.cs │ └── TiledMapTilesetTileAnimationFrame.cs │ ├── Timers │ ├── ContinuousClock.cs │ ├── CountdownTimer.cs │ ├── GameTimer.cs │ └── TimerState.cs │ ├── Transform.cs │ ├── Tweening │ ├── ColorTween.cs │ ├── EasingFunctions.cs │ ├── LinearOperations.cs │ ├── LinearTween.cs │ ├── Tween.cs │ ├── TweenFieldMember.cs │ ├── TweenMember.cs │ ├── TweenPropertyMember.cs │ └── Tweener.cs │ ├── VectorDraw │ ├── PrimitiveBatch.cs │ └── PrimitiveDrawing.cs │ ├── ViewportAdapters │ ├── BoxingViewportAdapter.cs │ ├── DefaultViewportAdapter.cs │ ├── ScalingViewportAdapter.cs │ ├── ViewportAdapter.cs │ └── WindowViewportAdapter.cs │ └── rebuild-effects.sh └── tests ├── Directory.Build.props ├── MonoGame.Extended.Content.Pipeline.Tests ├── AstridAnimatorImporterTests.cs ├── AstridAnimatorProcessorTests.cs ├── KNI.Extended.Content.Pipeline.Tests.csproj ├── MonoGame.Extended.Content.Pipeline.Tests.csproj ├── TestData │ ├── astrid-animator-atlas.json │ ├── astrid-animator.aa │ ├── isometric.tmx │ ├── isometric_tileset.png │ ├── level01.tmx │ ├── template.tx │ ├── test-atlas.json │ ├── test-object-layer.tmx │ ├── test-tileset-base64.tmx │ ├── test-tileset-csv.tmx │ ├── test-tileset-gzip.tmx │ ├── test-tileset-xml.tmx │ ├── test-tileset-zlib.tmx │ └── test-tileset.json ├── TexturePackerJsonImporterProcessorTests.cs └── TiledMapImporterProcessorTests.cs └── MonoGame.Extended.Tests ├── AngleTest.cs ├── Animations └── AnimationTests.cs ├── AssertExtensions.cs ├── BitmapFonts ├── BitmapFontFileReaderTests.cs ├── BitmapFontTests.cs └── files │ └── bmfont │ ├── test-font-binary.fnt │ ├── test-font-text.fnt │ ├── test-font-xml-utf8-bom.fnt │ ├── test-font-xml.fnt │ └── test-font_0.png ├── CollectionAssert.cs ├── Collections ├── BagTests.cs ├── DequeTests.cs └── ObjectPoolTests.cs ├── Collisions ├── CollisionComponentTests.cs ├── Implementation │ ├── BasicActor.cs │ └── BasicWall.cs ├── QuadTreeTests.cs └── SpatialHashTests.cs ├── ColorExtensionsTests.cs ├── ColorHelperTests.cs ├── Content └── ContentReaderExtensionsTests.cs ├── ECS ├── AspectBuilderTests.cs ├── AspectTests.cs ├── BitArrayExtensionsTests.cs ├── ComponentManagerTests.cs ├── ComponentMapperTests.cs ├── ComponentTypeTests.cs └── WorldManagerTests.cs ├── FNA.Extended.Tests.csproj ├── Fixtures ├── GraphicsTestCollection.cs └── GraphicsTestFixture.cs ├── Graphics └── Texture2DAtlasTests.cs ├── HslColorTests.cs ├── KNI.Extended.Tests.csproj ├── Math ├── IntervalTests.cs ├── Matrix3x2.cs └── RectangleFTests.cs ├── MathExtendedTests.cs ├── MockContentManager.cs ├── MonoGame.Extended.Tests.csproj ├── OpenTK.dll.config ├── OrthographicCameraTests.cs ├── Particles ├── AssertionModifier.cs ├── EmitterTests.cs ├── ParticleBufferTests.cs ├── ParticleEffectReaderTests.cs ├── ParticleEffectSerializerTests.cs ├── ParticleEffectWriterTests.cs └── Profiles │ ├── PointProfileTests.cs │ └── RingProfileTests.cs ├── Primitives ├── BoundingRectangleTests.cs ├── CircleFTests.cs ├── EllipseFTest.cs ├── OrientedRectangleTests.cs ├── Point2Tests.cs ├── Ray2DTests.cs ├── RectangleFTests.cs ├── Segment2DTests.cs ├── ShapeTests.cs └── Size2Tests.cs ├── RangeTests.cs ├── RectangleExtensionsTests.cs ├── Screens ├── GameScreenTests.cs ├── ScreenManagerTests.cs └── TestScreens.cs ├── Serialization ├── ColorJsonConverterTests.cs ├── RectangleFJsonConverterTest.cs └── Xml │ ├── XmlReaderExtensionsTests.cs │ └── XmlWriterExtensionsTests.cs ├── Shapes └── PolygonTests.cs ├── TestGame.cs ├── Tiled ├── FullMapRendererTest.cs ├── TileMapPropertiesTest.cs └── TiledTilesetTests.cs ├── Tweening ├── ColorHandler.cs └── TweenerTests.cs ├── Vector2ExtensionsTests.cs ├── ViewportAdapters ├── BoxingViewportAdapterTests.cs └── DefaultViewportAdapterTests.cs └── WithinDeltaEqualityComparer.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/.github/workflows/pull-request-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODING_GUIDELINES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/CODING_GUIDELINES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /FNA.Extended.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/FNA.Extended.sln -------------------------------------------------------------------------------- /KNI.Extended.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/KNI.Extended.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/LICENSE -------------------------------------------------------------------------------- /MonoGame.Extended.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/MonoGame.Extended.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/Directory.Build.props -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks.Collisions/DifferentPoolSizeCollision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks.Collisions/DifferentPoolSizeCollision.cs -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks.Collisions/FNA.Extended.Benchmarks.Collisions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks.Collisions/FNA.Extended.Benchmarks.Collisions.csproj -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks.Collisions/KNI.Extended.Benchmarks.Collisions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks.Collisions/KNI.Extended.Benchmarks.Collisions.csproj -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks.Collisions/MonoGame.Extended.Benchmarks.Collisions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks.Collisions/MonoGame.Extended.Benchmarks.Collisions.csproj -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks.Collisions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks.Collisions/Program.cs -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks.Collisions/SpaceAlgorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks.Collisions/SpaceAlgorithms.cs -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks.Collisions/Utils/Collider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks.Collisions/Utils/Collider.cs -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks/FNA.Extended.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks/FNA.Extended.Benchmarks.csproj -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks/KNI.Extended.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks/KNI.Extended.Benchmarks.csproj -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks/Matrix3x2Benchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks/Matrix3x2Benchmarks.cs -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks/MonoGame.Extended.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks/MonoGame.Extended.Benchmarks.csproj -------------------------------------------------------------------------------- /benchmarks/MonoGame.Extended.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/benchmarks/MonoGame.Extended.Benchmarks/Program.cs -------------------------------------------------------------------------------- /logos/github-social-media-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/github-social-media-large.png -------------------------------------------------------------------------------- /logos/logo-banner-1600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-banner-1600.png -------------------------------------------------------------------------------- /logos/logo-banner-800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-banner-800.png -------------------------------------------------------------------------------- /logos/logo-drop-shadow-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-drop-shadow-512.png -------------------------------------------------------------------------------- /logos/logo-nuget-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-nuget-128.png -------------------------------------------------------------------------------- /logos/logo-nuget-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-nuget-32.png -------------------------------------------------------------------------------- /logos/logo-nuget-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-nuget-400.png -------------------------------------------------------------------------------- /logos/logo-square-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-square-1024.png -------------------------------------------------------------------------------- /logos/logo-square-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-square-128.png -------------------------------------------------------------------------------- /logos/logo-square-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-square-32.png -------------------------------------------------------------------------------- /logos/logo-square-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-square-512.png -------------------------------------------------------------------------------- /logos/logo-square-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-square-64.png -------------------------------------------------------------------------------- /logos/logo-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/logos/logo-square.svg -------------------------------------------------------------------------------- /source/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/Directory.Build.props -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorAnimation.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorFile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorImporter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorProcessor.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorProcessorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorProcessorResult.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Animations/AstridAnimatorWriter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontImporter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontProcessor.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontProcessorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontProcessorResult.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/BitmapFonts/BitmapFontWriter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/ContentImporterContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/ContentImporterContextExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/ContentImporterResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/ContentImporterResult.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/ContentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/ContentItem.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/ContentLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/ContentLogger.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/ContentWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/ContentWriterExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Json/JsonContentImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Json/JsonContentImporter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Json/JsonContentProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Json/JsonContentProcessor.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Json/JsonContentProcessorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Json/JsonContentProcessorResult.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Json/JsonContentTypeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Json/JsonContentTypeWriter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/KNI.Extended.Content.Pipeline.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/KNI.Extended.Content.Pipeline.csproj -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/MonoGame.Extended.Content.Pipeline.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/MonoGame.Extended.Content.Pipeline.csproj -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/MonoGame.Extended.Content.Pipeline.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/MonoGame.Extended.Content.Pipeline.targets -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Particles/ParticleEffectImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Particles/ParticleEffectImporter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Particles/ParticleEffectProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Particles/ParticleEffectProcessor.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Particles/ParticleEffectProcessorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Particles/ParticleEffectProcessorResult.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Particles/ParticleEffectWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Particles/ParticleEffectWriter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Particles/ParticleFileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Particles/ParticleFileContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/PathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/PathExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerJsonImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerJsonImporter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerProcessor.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerProcessorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerProcessorResult.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/TextureAtlases/TexturePackerWriter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Tiled/ContentWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Tiled/ContentWriterExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Tiled/TiledContentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledContentItem.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapContentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapContentItem.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapImporter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapObjectTemplateImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapObjectTemplateImporter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapProcessor.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetContentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetContentItem.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetImporter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetProcessor.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapTilesetWriter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/Tiled/TiledMapWriter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended.Content.Pipeline/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended.Content.Pipeline/readme.txt -------------------------------------------------------------------------------- /source/MonoGame.Extended/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/.config/dotnet-tools.json -------------------------------------------------------------------------------- /source/MonoGame.Extended/AnimationComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/AnimationComponent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Animations/AnimationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Animations/AnimationController.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Animations/AnimationEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Animations/AnimationEvent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Animations/AnimationEventTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Animations/AnimationEventTrigger.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Animations/IAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Animations/IAnimation.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Animations/IAnimationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Animations/IAnimationController.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Animations/IAnimationFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Animations/IAnimationFrame.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/BitmapFonts/BitmapFont.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/BitmapFonts/BitmapFont.Extensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/BitmapFonts/BitmapFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/BitmapFonts/BitmapFont.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/BitmapFonts/BitmapFontCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/BitmapFonts/BitmapFontCharacter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Camera.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collections/Bag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collections/Bag.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collections/Deque.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collections/Deque.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collections/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collections/DictionaryExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collections/IObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collections/IObservableCollection.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collections/IPoolable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collections/IPoolable.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collections/ItemEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collections/ItemEventArgs.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collections/KeyedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collections/KeyedCollection.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collections/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collections/ListExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collections/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collections/ObjectPool.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collections/ObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collections/ObservableCollection.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collections/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collections/Pool.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collisions/CollisionComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collisions/CollisionComponent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collisions/CollisionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collisions/CollisionEventArgs.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collisions/ICollisionActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collisions/ICollisionActor.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collisions/ISpaceAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collisions/ISpaceAlgorithm.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collisions/Layers/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collisions/Layers/Layer.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collisions/Layers/UndefinedLayerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collisions/Layers/UndefinedLayerException.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collisions/QuadTree/QuadTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collisions/QuadTree/QuadTree.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collisions/QuadTree/QuadTreeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collisions/QuadTree/QuadTreeData.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collisions/QuadTree/QuadTreeSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collisions/QuadTree/QuadTreeSpace.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Collisions/SpatialHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Collisions/SpatialHash.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ColorExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ColorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ColorHelper.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/CompileEffects.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/CompileEffects.targets -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/BitmapFonts/BitmapFontFileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/BitmapFonts/BitmapFontFileContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/BitmapFonts/BitmapFontFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/BitmapFonts/BitmapFontFileReader.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/ContentManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/ContentManagerExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/ContentReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/ContentReaderExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/ContentReaders/BitmapFontContentReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/ContentReaders/BitmapFontContentReader.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/ContentReaders/JsonContentTypeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/ContentReaders/JsonContentTypeReader.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/ContentReaders/ParticleEffectContentReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/ContentReaders/ParticleEffectContentReader.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/ContentReaders/Texture2DAtlasReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/ContentReaders/Texture2DAtlasReader.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/ExtendedContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/ExtendedContentManager.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/TexturePacker/TexturePackerFileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/TexturePacker/TexturePackerFileContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/TexturePacker/TexturePackerFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/TexturePacker/TexturePackerFileReader.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapEllipseContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapEllipseContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapGroupLayerContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapGroupLayerContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapImageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapImageContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapImageLayerContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapImageLayerContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapLayerContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapLayerContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapLayerModelContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapLayerModelContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapObjectContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapObjectContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapObjectDrawOrderContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapObjectDrawOrderContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapObjectLayerContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapObjectLayerContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapObjectTemplateContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapObjectTemplateContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapOrientationContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapOrientationContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapPolygonContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapPolygonContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapPolylineContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapPolylineContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapPropertyContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapPropertyContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapStaggerAxisContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapStaggerAxisContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapStaggerIndexContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapStaggerIndexContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapTileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapTileContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapTileDrawOrderContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapTileDrawOrderContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapTileLayerContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapTileLayerContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapTileLayerDataChunkContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapTileLayerDataChunkContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapTileLayerDataContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapTileLayerDataContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapTileOffsetContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapTileOffsetContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapTilesetContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapTilesetContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapTilesetGridContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapTilesetGridContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapTilesetTileAnimationFrameContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapTilesetTileAnimationFrameContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Content/Tiled/TiledMapTilesetTileContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Content/Tiled/TiledMapTilesetTileContent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/Aspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/Aspect.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/AspectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/AspectBuilder.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/BitArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/BitArrayExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/ComponentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/ComponentManager.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/ComponentMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/ComponentMapper.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/ComponentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/ComponentType.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/Entity.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/EntityManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/EntityManager.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/EntitySubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/EntitySubscription.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/Systems/DrawSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/Systems/DrawSystem.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/Systems/EntityDrawSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/Systems/EntityDrawSystem.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/Systems/EntityProcessingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/Systems/EntityProcessingSystem.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/Systems/EntitySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/Systems/EntitySystem.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/Systems/EntityUpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/Systems/EntityUpdateSystem.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/Systems/ISystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/Systems/ISystem.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/Systems/UpdateSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/Systems/UpdateSystem.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/World.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/World.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ECS/WorldBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ECS/WorldBuilder.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/FNA.Extended.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/FNA.Extended.csproj -------------------------------------------------------------------------------- /source/MonoGame.Extended/FramesPerSecondCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/FramesPerSecondCounter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/FramesPerSecondCounterComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/FramesPerSecondCounterComponent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/GameComponentCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/GameComponentCollectionExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/GameTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/GameTimeExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/AnimatedSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/AnimatedSprite.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Batcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Batcher.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Batcher2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Batcher2D.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Effects/DefaultEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Effects/DefaultEffect.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Effects/EffectResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Effects/EffectResource.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Effects/ITextureEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Effects/ITextureEffect.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Effects/MatrixChainEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Effects/MatrixChainEffect.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Effects/Resources/DefaultEffect.dx11.mgfxo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Effects/Resources/DefaultEffect.dx11.mgfxo -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Effects/Resources/DefaultEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Effects/Resources/DefaultEffect.fx -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Effects/Resources/DefaultEffect.ogl.mgfxo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Effects/Resources/DefaultEffect.ogl.mgfxo -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Effects/Resources/Macros.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Effects/Resources/Macros.fxh -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Effects/Resources/Structures.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Effects/Resources/Structures.fxh -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/FlipFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/FlipFlags.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Geometry/GeometryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Geometry/GeometryBuilder.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Geometry/GeometryBuilder2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Geometry/GeometryBuilder2D.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/GraphicsDevice.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/GraphicsDevice.Extensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/IBatchDrawCallInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/IBatchDrawCallInfo.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/IMatrixChainEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/IMatrixChainEffect.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/NinePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/NinePatch.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/PrimitiveTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/PrimitiveTypeExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/RenderTarget2DExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/RenderTarget2DExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Sprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Sprite.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/SpriteBatch.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/SpriteBatch.Extensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/SpriteSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/SpriteSheet.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/SpriteSheetAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/SpriteSheetAnimation.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/SpriteSheetAnimationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/SpriteSheetAnimationBuilder.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/SpriteSheetAnimationFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/SpriteSheetAnimationFrame.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Texture2DAtlas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Texture2DAtlas.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Texture2DRegion.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Texture2DRegion.Extensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Graphics/Texture2DRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Graphics/Texture2DRegion.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/HslColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/HslColor.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/IColorable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/IColorable.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/IEquatableByRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/IEquatableByRef.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/IMovable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/IMovable.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/IRectangular.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/IRectangular.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/IRotatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/IRotatable.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/IScalable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/IScalable.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ISizable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ISizable.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/ExtendedPlayerIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/ExtendedPlayerIndex.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/GamePadEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/GamePadEventArgs.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/GamePadListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/GamePadListener.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/GamePadListenerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/GamePadListenerSettings.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/IInputService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/IInputService.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/InputListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/InputListener.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/InputListenerComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/InputListenerComponent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/InputListenerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/InputListenerSettings.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/KeyboardEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/KeyboardEventArgs.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/KeyboardListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/KeyboardListener.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/KeyboardListenerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/KeyboardListenerSettings.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/KeyboardModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/KeyboardModifiers.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/MouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/MouseEventArgs.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/MouseListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/MouseListener.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/MouseListenerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/MouseListenerSettings.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/TouchEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/TouchEventArgs.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/TouchListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/TouchListener.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/InputListeners/TouchListenerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/InputListeners/TouchListenerSettings.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/KeyboardExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/KeyboardExtended.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/KeyboardState.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/KeyboardState.Extensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/KeyboardStateExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/KeyboardStateExtended.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/MouseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/MouseButton.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/MouseExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/MouseExtended.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Input/MouseStateExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Input/MouseStateExtended.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/KNI.Extended.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/KNI.Extended.csproj -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Angle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Angle.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/BoundingRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/BoundingRectangle.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/CircleF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/CircleF.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/EllipseF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/EllipseF.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/FastRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/FastRandom.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/FloatHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/FloatHelper.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Interval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Interval.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Matrix3x2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Matrix3x2.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/MatrixExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/MatrixExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/OrientedRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/OrientedRectangle.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/PrimitivesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/PrimitivesHelper.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/RandomExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/RandomExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Range.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Ray2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Ray2.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/RectangleF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/RectangleF.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Segment2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Segment2.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/ShapeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/ShapeExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/ShapeF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/ShapeF.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Size.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/SizeF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/SizeF.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Thickness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Thickness.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Triangulation/CyclicalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Triangulation/CyclicalList.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Triangulation/IndexableCyclicalLinkedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Triangulation/IndexableCyclicalLinkedList.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Triangulation/LineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Triangulation/LineSegment.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Triangulation/Triangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Triangulation/Triangle.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Triangulation/Triangulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Triangulation/Triangulator.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Triangulation/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Triangulation/Vertex.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Math/Vector2Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Math/Vector2Extensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/MathExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/MathExtended.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/MonoGame.Extended.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/MonoGame.Extended.csproj -------------------------------------------------------------------------------- /source/MonoGame.Extended/MonoGame.Extended.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/MonoGame.Extended.csproj.DotSettings -------------------------------------------------------------------------------- /source/MonoGame.Extended/OrthographicCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/OrthographicCamera.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Data/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Data/Particle.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Data/ParticleColorParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Data/ParticleColorParameter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Data/ParticleFloatParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Data/ParticleFloatParameter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Data/ParticleInt32Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Data/ParticleInt32Parameter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Data/ParticleReleaseParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Data/ParticleReleaseParameters.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Data/ParticleValueKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Data/ParticleValueKind.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Data/ParticleVector2Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Data/ParticleVector2Parameter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/AgeModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/AgeModifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Containers/CircleContainerModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Containers/CircleContainerModifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Containers/RectangleContainerModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Containers/RectangleContainerModifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Containers/RectangleLoopContainerModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Containers/RectangleLoopContainerModifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/DragModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/DragModifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Interpolators/ColorInterpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Interpolators/ColorInterpolator.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Interpolators/HueInterpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Interpolators/HueInterpolator.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Interpolators/Interpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Interpolators/Interpolator.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Interpolators/InterpolatorOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Interpolators/InterpolatorOfT.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Interpolators/OpacityInterpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Interpolators/OpacityInterpolator.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Interpolators/RotationInterpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Interpolators/RotationInterpolator.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Interpolators/ScaleInterpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Interpolators/ScaleInterpolator.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Interpolators/VelocityInterpolator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Interpolators/VelocityInterpolator.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/LinearGravityModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/LinearGravityModifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/Modifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/Modifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/ModifierExecutionStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/ModifierExecutionStrategy.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/OpacityFastFadeModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/OpacityFastFadeModifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/RotationModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/RotationModifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/VelocityColorModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/VelocityColorModifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/VelocityModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/VelocityModifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Modifiers/VortexModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Modifiers/VortexModifier.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/ParticleBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/ParticleBuffer.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/ParticleEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/ParticleEffect.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/ParticleEffectReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/ParticleEffectReader.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/ParticleEffectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/ParticleEffectSerializer.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/ParticleEffectWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/ParticleEffectWriter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/ParticleEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/ParticleEmitter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/ParticleIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/ParticleIterator.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/ParticleRenderingOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/ParticleRenderingOrder.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Primatives/LineSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Primatives/LineSegment.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Profiles/BoxFillProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Profiles/BoxFillProfile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Profiles/BoxProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Profiles/BoxProfile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Profiles/BoxUniformProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Profiles/BoxUniformProfile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Profiles/CircleProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Profiles/CircleProfile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Profiles/CircleRadiation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Profiles/CircleRadiation.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Profiles/LineProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Profiles/LineProfile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Profiles/LineRadiation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Profiles/LineRadiation.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Profiles/PointProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Profiles/PointProfile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Profiles/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Profiles/Profile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Profiles/RingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Profiles/RingProfile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/Profiles/SprayProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/Profiles/SprayProfile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Particles/SpriteBatchExtensions.ParticleEfffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Particles/SpriteBatchExtensions.ParticleEfffect.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Rectangle.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Rectangle.Extensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/RectangleF.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/RectangleF.Extensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Screens/GameScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Screens/GameScreen.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Screens/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Screens/Screen.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Screens/ScreenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Screens/ScreenManager.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Screens/Transitions/ExpandTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Screens/Transitions/ExpandTransition.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Screens/Transitions/FadeTransition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Screens/Transitions/FadeTransition.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Screens/Transitions/Transition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Screens/Transitions/Transition.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/BaseTypeJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/BaseTypeJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/ColorJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/ColorJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/ContentManagerJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/ContentManagerJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/FloatStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/FloatStringConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/HslColorJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/HslColorJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/IntervalJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/IntervalJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/JsonContentLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/JsonContentLoader.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/MonoGameJsonSerializerOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/MonoGameJsonSerializerOptionsProvider.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/NinePatchJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/NinePatchJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/RangeJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/RangeJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/RectangleFJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/RectangleFJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/Size2JsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/Size2JsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/SizeJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/SizeJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/TextContentLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/TextContentLoader.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/TextureAtlasJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/TextureAtlasJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/TextureRegion2DJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/TextureRegion2DJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/TextureRegionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/TextureRegionService.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/ThicknessJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/ThicknessJsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/Utf8JsonReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/Utf8JsonReaderExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Json/Vector2JsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Json/Vector2JsonConverter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Xml/XmlNode.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Xml/XmlNode.Extensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Xml/XmlReaderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Xml/XmlReaderExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Serialization/Xml/XmlWriterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Serialization/Xml/XmlWriterExtensions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Shapes/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Shapes/Polygon.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Shapes/Polyline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Shapes/Polyline.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/SimpleDrawableGameComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/SimpleDrawableGameComponent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/SimpleGameComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/SimpleGameComponent.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/Renderers/TiledMapAnimatedLayerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/Renderers/TiledMapAnimatedLayerModel.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/Renderers/TiledMapAnimatedLayerModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/Renderers/TiledMapAnimatedLayerModelBuilder.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/Renderers/TiledMapEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/Renderers/TiledMapEffect.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/Renderers/TiledMapLayerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/Renderers/TiledMapLayerModel.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/Renderers/TiledMapLayerModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/Renderers/TiledMapLayerModelBuilder.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/Renderers/TiledMapModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/Renderers/TiledMapModel.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/Renderers/TiledMapModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/Renderers/TiledMapModelBuilder.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/Renderers/TiledMapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/Renderers/TiledMapRenderer.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/Renderers/TiledMapStaticLayerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/Renderers/TiledMapStaticLayerModel.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/Renderers/TiledMapStaticLayerModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/Renderers/TiledMapStaticLayerModelBuilder.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMap.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapEllipseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapEllipseObject.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapGroupLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapGroupLayer.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapHelper.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapImageLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapImageLayer.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapLayer.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapLayerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapLayerType.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapObject.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapObjectDrawOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapObjectDrawOrder.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapObjectLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapObjectLayer.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapObjectType.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapOrientation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapOrientation.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapPolygonObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapPolygonObject.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapPolylineObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapPolylineObject.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapProperties.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapPropertyValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapPropertyValue.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapReader.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapRectangleObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapRectangleObject.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapTile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapTileDrawOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapTileDrawOrder.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapTileFlipFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapTileFlipFlags.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapTileLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapTileLayer.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapTileObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapTileObject.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapTileset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapTileset.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapTilesetAnimatedTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapTilesetAnimatedTile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapTilesetReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapTilesetReader.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapTilesetTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapTilesetTile.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tiled/TiledMapTilesetTileAnimationFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tiled/TiledMapTilesetTileAnimationFrame.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Timers/ContinuousClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Timers/ContinuousClock.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Timers/CountdownTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Timers/CountdownTimer.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Timers/GameTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Timers/GameTimer.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Timers/TimerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Timers/TimerState.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Transform.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tweening/ColorTween.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tweening/ColorTween.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tweening/EasingFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tweening/EasingFunctions.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tweening/LinearOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tweening/LinearOperations.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tweening/LinearTween.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tweening/LinearTween.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tweening/Tween.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tweening/Tween.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tweening/TweenFieldMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tweening/TweenFieldMember.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tweening/TweenMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tweening/TweenMember.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tweening/TweenPropertyMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tweening/TweenPropertyMember.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/Tweening/Tweener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/Tweening/Tweener.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/VectorDraw/PrimitiveBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/VectorDraw/PrimitiveBatch.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/VectorDraw/PrimitiveDrawing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/VectorDraw/PrimitiveDrawing.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ViewportAdapters/BoxingViewportAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ViewportAdapters/BoxingViewportAdapter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ViewportAdapters/DefaultViewportAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ViewportAdapters/DefaultViewportAdapter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ViewportAdapters/ScalingViewportAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ViewportAdapters/ScalingViewportAdapter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ViewportAdapters/ViewportAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ViewportAdapters/ViewportAdapter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/ViewportAdapters/WindowViewportAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/ViewportAdapters/WindowViewportAdapter.cs -------------------------------------------------------------------------------- /source/MonoGame.Extended/rebuild-effects.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/source/MonoGame.Extended/rebuild-effects.sh -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/AstridAnimatorImporterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/AstridAnimatorImporterTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/AstridAnimatorProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/AstridAnimatorProcessorTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/KNI.Extended.Content.Pipeline.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/KNI.Extended.Content.Pipeline.Tests.csproj -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/MonoGame.Extended.Content.Pipeline.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/MonoGame.Extended.Content.Pipeline.Tests.csproj -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/astrid-animator-atlas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/astrid-animator-atlas.json -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/astrid-animator.aa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/astrid-animator.aa -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/isometric.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/isometric.tmx -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/isometric_tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/isometric_tileset.png -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/level01.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/level01.tmx -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/template.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/template.tx -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-atlas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-atlas.json -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-object-layer.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-object-layer.tmx -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset-base64.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset-base64.tmx -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset-csv.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset-csv.tmx -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset-gzip.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset-gzip.tmx -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset-xml.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset-xml.tmx -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset-zlib.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset-zlib.tmx -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TestData/test-tileset.json -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TexturePackerJsonImporterProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TexturePackerJsonImporterProcessorTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Content.Pipeline.Tests/TiledMapImporterProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Content.Pipeline.Tests/TiledMapImporterProcessorTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/AngleTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/AngleTest.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Animations/AnimationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Animations/AnimationTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/AssertExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/AssertExtensions.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/BitmapFonts/BitmapFontFileReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/BitmapFonts/BitmapFontFileReaderTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/BitmapFonts/BitmapFontTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/BitmapFonts/BitmapFontTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/BitmapFonts/files/bmfont/test-font-binary.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/BitmapFonts/files/bmfont/test-font-binary.fnt -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/BitmapFonts/files/bmfont/test-font-text.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/BitmapFonts/files/bmfont/test-font-text.fnt -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/BitmapFonts/files/bmfont/test-font-xml-utf8-bom.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/BitmapFonts/files/bmfont/test-font-xml-utf8-bom.fnt -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/BitmapFonts/files/bmfont/test-font-xml.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/BitmapFonts/files/bmfont/test-font-xml.fnt -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/BitmapFonts/files/bmfont/test-font_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/BitmapFonts/files/bmfont/test-font_0.png -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/CollectionAssert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/CollectionAssert.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Collections/BagTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Collections/BagTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Collections/DequeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Collections/DequeTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Collections/ObjectPoolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Collections/ObjectPoolTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Collisions/CollisionComponentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Collisions/CollisionComponentTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Collisions/Implementation/BasicActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Collisions/Implementation/BasicActor.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Collisions/Implementation/BasicWall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Collisions/Implementation/BasicWall.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Collisions/QuadTreeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Collisions/QuadTreeTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Collisions/SpatialHashTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Collisions/SpatialHashTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/ColorExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/ColorExtensionsTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/ColorHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/ColorHelperTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Content/ContentReaderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Content/ContentReaderExtensionsTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/ECS/AspectBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/ECS/AspectBuilderTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/ECS/AspectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/ECS/AspectTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/ECS/BitArrayExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/ECS/BitArrayExtensionsTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/ECS/ComponentManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/ECS/ComponentManagerTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/ECS/ComponentMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/ECS/ComponentMapperTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/ECS/ComponentTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/ECS/ComponentTypeTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/ECS/WorldManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/ECS/WorldManagerTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/FNA.Extended.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/FNA.Extended.Tests.csproj -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Fixtures/GraphicsTestCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Fixtures/GraphicsTestCollection.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Fixtures/GraphicsTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Fixtures/GraphicsTestFixture.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Graphics/Texture2DAtlasTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Graphics/Texture2DAtlasTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/HslColorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/HslColorTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/KNI.Extended.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/KNI.Extended.Tests.csproj -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Math/IntervalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Math/IntervalTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Math/Matrix3x2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Math/Matrix3x2.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Math/RectangleFTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Math/RectangleFTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/MathExtendedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/MathExtendedTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/MockContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/MockContentManager.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/MonoGame.Extended.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/MonoGame.Extended.Tests.csproj -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/OpenTK.dll.config -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/OrthographicCameraTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/OrthographicCameraTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Particles/AssertionModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Particles/AssertionModifier.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Particles/EmitterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Particles/EmitterTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Particles/ParticleBufferTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Particles/ParticleBufferTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Particles/ParticleEffectReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Particles/ParticleEffectReaderTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Particles/ParticleEffectSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Particles/ParticleEffectSerializerTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Particles/ParticleEffectWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Particles/ParticleEffectWriterTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Particles/Profiles/PointProfileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Particles/Profiles/PointProfileTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Particles/Profiles/RingProfileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Particles/Profiles/RingProfileTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Primitives/BoundingRectangleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Primitives/BoundingRectangleTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Primitives/CircleFTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Primitives/CircleFTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Primitives/EllipseFTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Primitives/EllipseFTest.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Primitives/OrientedRectangleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Primitives/OrientedRectangleTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Primitives/Point2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Primitives/Point2Tests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Primitives/Ray2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Primitives/Ray2DTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Primitives/RectangleFTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Primitives/RectangleFTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Primitives/Segment2DTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Primitives/Segment2DTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Primitives/ShapeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Primitives/ShapeTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Primitives/Size2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Primitives/Size2Tests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/RangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/RangeTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/RectangleExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/RectangleExtensionsTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Screens/GameScreenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Screens/GameScreenTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Screens/ScreenManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Screens/ScreenManagerTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Screens/TestScreens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Screens/TestScreens.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Serialization/ColorJsonConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Serialization/ColorJsonConverterTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Serialization/RectangleFJsonConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Serialization/RectangleFJsonConverterTest.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Serialization/Xml/XmlReaderExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Serialization/Xml/XmlReaderExtensionsTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Serialization/Xml/XmlWriterExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Serialization/Xml/XmlWriterExtensionsTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Shapes/PolygonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Shapes/PolygonTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/TestGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/TestGame.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Tiled/FullMapRendererTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Tiled/FullMapRendererTest.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Tiled/TileMapPropertiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Tiled/TileMapPropertiesTest.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Tiled/TiledTilesetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Tiled/TiledTilesetTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Tweening/ColorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Tweening/ColorHandler.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Tweening/TweenerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Tweening/TweenerTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/Vector2ExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/Vector2ExtensionsTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/ViewportAdapters/BoxingViewportAdapterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/ViewportAdapters/BoxingViewportAdapterTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/ViewportAdapters/DefaultViewportAdapterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/ViewportAdapters/DefaultViewportAdapterTests.cs -------------------------------------------------------------------------------- /tests/MonoGame.Extended.Tests/WithinDeltaEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MonoGame-Extended/Monogame-Extended/HEAD/tests/MonoGame.Extended.Tests/WithinDeltaEqualityComparer.cs --------------------------------------------------------------------------------