├── .gitattributes ├── .gitignore ├── Binaries ├── OpenAL │ └── oalinst.exe └── OpenTK │ └── Release │ ├── Data │ ├── Audio │ │ └── the_ring_that_fell.wav │ ├── Poem.txt │ ├── Shaders │ │ ├── CubeMap_FS.glsl │ │ ├── CubeMap_VS.glsl │ │ ├── JuliaSet_SM2_FS.glsl │ │ ├── JuliaSet_SM3_FS.glsl │ │ ├── JuliaSet_VS.glsl │ │ ├── Parallax_FS.glsl │ │ ├── Parallax_VS.glsl │ │ ├── Picking_FS.glsl │ │ ├── Picking_VS.glsl │ │ ├── Simple_FS.glsl │ │ └── Simple_VS.glsl │ └── Textures │ │ ├── JuliaColorTable.bmp │ │ ├── Swizzled Textures License.txt │ │ ├── cursor.png │ │ ├── earth-cubemap.dds │ │ ├── logo-dark.jpg │ │ ├── logo.jpg │ │ ├── metal.jpg │ │ ├── swizzled-rock-diffuse-height.dds │ │ └── swizzled-rock-normal-gloss.dds │ ├── Examples.exe │ ├── OpenTK.Compatibility.dll │ ├── OpenTK.Compatibility.dll.config │ ├── OpenTK.GLControl.dll │ ├── OpenTK.GLControl.xml │ ├── OpenTK.dll │ ├── OpenTK.dll.config │ ├── OpenTK.pdb │ ├── OpenTK.xml │ └── debug.log ├── Examples ├── Arithmetics │ ├── Koch │ │ ├── Koch.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── Mandelbrot │ │ ├── Mandelbrot.csproj │ │ ├── Pointer.png │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Z.png │ │ └── app.config │ ├── SimpleArithmetics │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SimpleArithmetics.csproj │ │ └── app.config │ ├── Sinus1 │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Sinus1.csproj │ │ └── app.config │ └── Sinus2 │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Sinus2.csproj │ │ └── app.config ├── CharacterTemplate │ ├── CharacterTemplate.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config ├── Games │ ├── Asteroids │ │ ├── 133283__fins__game-over.wav │ │ ├── 133284__fins__level-completed.wav │ │ ├── 172207__fins__teleport.wav │ │ ├── 35643__sandyrb__usat-bomb.wav │ │ ├── 35686__jobro__laser9.wav │ │ ├── 80938__tony-b-kksm__soft-explosion.wav │ │ ├── Asteroids.csproj │ │ ├── MovingObject.cs │ │ ├── Particle.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RotatingObject.cs │ │ └── app.config │ ├── Mask │ │ ├── AnimatedObject.cs │ │ ├── BouncingBall.cs │ │ ├── Explosion.cs │ │ ├── HomingMisslie.cs │ │ ├── Mask.csproj │ │ ├── MovingObject.cs │ │ ├── Player.cs │ │ ├── PlayerPosition.cs │ │ ├── Present.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Shot.cs │ │ └── app.config │ ├── Mines │ │ ├── Mines.csproj │ │ ├── Pointer.png │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── Tanks │ │ ├── Graphics │ │ │ ├── SU-85.png │ │ │ └── jagtpanther.png │ │ ├── MovingObject.cs │ │ ├── Particle.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Tank.cs │ │ ├── Tank1.cs │ │ ├── Tank2.cs │ │ ├── Tanks.csproj │ │ └── app.config │ ├── TextAdventure │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TextAdventure.csproj │ │ └── app.config │ └── TextAdventure2 │ │ ├── Adventure.xml │ │ ├── Adventure.xsd │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TextAdventure2.csproj │ │ └── app.config ├── Networking │ ├── Latency │ │ ├── Latency.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── MultiPlayerSetup │ │ ├── MultiPlayerSetup.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── MultiUserChat │ │ ├── MultiUserChat.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── MultiUserDraw │ │ ├── MultiUserDraw.csproj │ │ ├── Pointer.png │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ └── PeerToPeer │ │ ├── PeerToPeer.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── app.config ├── Raster Graphics │ ├── ClipLines │ │ ├── ClipLines.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── Gradients │ │ ├── Gradients.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Star.png │ │ └── app.config │ ├── MoireLines │ │ ├── MoireLines.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── RandomBoxes │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RandomBoxes.csproj │ │ └── app.config │ ├── RandomEllipses │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RandomEllipses.csproj │ │ └── app.config │ ├── RandomFilledEllipses │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RandomFilledEllipses.csproj │ │ └── app.config │ ├── RandomFilledPolygons │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RandomFilledPolygons.csproj │ │ └── app.config │ ├── RandomLines │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RandomLines.csproj │ │ └── app.config │ ├── RandomPlots │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RandomPlots.csproj │ │ └── app.config │ ├── RandomPolygons │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RandomPolygons.csproj │ │ └── app.config │ ├── RandomRectangles │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RandomRectangles.csproj │ │ └── app.config │ ├── RandomRoundedBoxes │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RandomRoundedBoxes.csproj │ │ └── app.config │ ├── RandomRoundedRectangles │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RandomRoundedRectangles.csproj │ │ └── app.config │ ├── Stars │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Stars.csproj │ │ └── app.config │ └── VennDiagram │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── VennDiagram.csproj │ │ └── app.config ├── RasterGraphicsTemplate │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RasterGraphicsTemplate.csproj │ └── app.config ├── Sprites │ ├── BouncingBalls │ │ ├── 88451__davidou__boing.wav │ │ ├── Ball.cs │ │ ├── Ball.png │ │ ├── BouncingBalls.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ └── MousePointer │ │ ├── MousePointer.csproj │ │ ├── Pointer.png │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── app.config ├── Text Screen Manipulation │ ├── BouncingCharacter1 │ │ ├── BouncingCharacter1.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── BouncingCharacter2 │ │ ├── BouncingCharacter2.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── BouncingCharacter3 │ │ ├── BouncingCharacter3.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── BouncingCharacter4 │ │ ├── BouncingCharacter4.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ ├── BouncingCharacter5 │ │ ├── 88451__davidou__boing.wav │ │ ├── BouncingCharacter5.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── app.config │ └── CreateLabyrinth │ │ ├── CreateLabyrinth.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── app.config └── Text and Strings │ ├── GuessANumber │ ├── GuessANumber.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── app.config │ └── HelloWorld │ ├── HelloWorld.csproj │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── app.config ├── Executables ├── Asteroids.zip ├── BouncingBalls.zip ├── BouncingCharacter1.zip ├── BouncingCharacter2.zip ├── BouncingCharacter3.zip ├── BouncingCharacter4.zip ├── BouncingCharacter5.zip ├── ClipLines.zip ├── CreateLabyrinth.zip ├── Gradients.zip ├── GuessANumber.zip ├── HelloWorld.zip ├── Koch.zip ├── Latency.zip ├── Mandelbrot.zip ├── Mask.zip ├── Mines.zip ├── MoireLines.zip ├── MousePointer.zip ├── MultiPlayerSetup.zip ├── MultiUserChat.zip ├── MultiUserDraw.zip ├── PeerToPeer.zip ├── RandomBoxes.zip ├── RandomEllipses.zip ├── RandomFilledEllipses.zip ├── RandomFilledPolygons.zip ├── RandomLines.zip ├── RandomPlots.zip ├── RandomPolygons.zip ├── RandomRectangles.zip ├── RandomRoundedBoxes.zip ├── RandomRoundedRectangles.zip ├── SimpleArithmetics.zip ├── Sinus1.zip ├── Sinus2.zip ├── Stars.zip ├── Tanks.zip ├── TextAdventure.zip ├── TextAdventure2.zip ├── UpdateExecutables.bat └── VennDiagram.zip ├── Images ├── Asteroids.png ├── Asteroids_20.png ├── BouncingBalls.png ├── BouncingBalls_20.png ├── BouncingCharacter1.png ├── BouncingCharacter1_20.png ├── BouncingCharacter2.png ├── BouncingCharacter2_20.png ├── BouncingCharacter3.png ├── BouncingCharacter3_20.png ├── BouncingCharacter4.png ├── BouncingCharacter4_20.png ├── BouncingCharacter5.png ├── BouncingCharacter5_20.png ├── ClipLines.png ├── ClipLines_20.png ├── CreateLabyrinth.png ├── CreateLabyrinth_20.png ├── Gradients.png ├── Gradients_20.png ├── GuessANumber.png ├── GuessANumber_20.png ├── HelloWorld.png ├── HelloWorld_20.png ├── Koch.png ├── Koch_20.png ├── Latency.png ├── Latency_20.png ├── Mandelbrot.png ├── Mandelbrot_20.png ├── Mask.png ├── Mask_20.png ├── Mines.png ├── Mines_20.png ├── MoireLines.png ├── MoireLines_20.png ├── MousePointer.png ├── MousePointer_20.png ├── MultiPlayerSetup.png ├── MultiPlayerSetup_20.png ├── MultiUserChat.png ├── MultiUserChat_20.png ├── MultiUserDraw.png ├── MultiUserDraw_20.png ├── PeerToPeer.png ├── PeerToPeer_20.png ├── RandomBoxes.png ├── RandomBoxes_20.png ├── RandomEllipses.png ├── RandomEllipses_20.png ├── RandomFilledEllipses.png ├── RandomFilledEllipses_20.png ├── RandomFilledPolygons.png ├── RandomFilledPolygons_20.png ├── RandomLines.png ├── RandomLines_20.png ├── RandomPlots.png ├── RandomPlots_20.png ├── RandomPolygons.png ├── RandomPolygons_20.png ├── RandomRectangles.png ├── RandomRectangles_20.png ├── RandomRoundedBoxes.png ├── RandomRoundedBoxes_20.png ├── RandomRoundedRectangles.png ├── RandomRoundedRectangles_20.png ├── SimpleArithmetics.png ├── SimpleArithmetics_20.png ├── Sinus1.png ├── Sinus1_20.png ├── Sinus2.png ├── Sinus2_20.png ├── Stars.png ├── Stars_20.png ├── TextAdventure.png ├── TextAdventure2.png ├── TextAdventure2_20.png ├── TextAdventure_20.png ├── VennDiagram.png └── VennDiagram_20.png ├── README.md ├── RetroSharp.sln ├── RetroSharp.suo ├── RetroSharp ├── Attributes │ ├── AspectRatioAttribute.cs │ ├── CharacterSetAttribute.cs │ ├── CharactersAttribute.cs │ ├── RasterGraphicsAttribute.cs │ └── ScreenBorderAttribute.cs ├── BackgroundColor.cs ├── C64Colors.cs ├── ColorStop.cs ├── CtrlCException.cs ├── Enumerations │ └── Key.cs ├── EventArguments │ ├── ElapsedTimeEventArgs.cs │ ├── KeyEventArgs.cs │ ├── KeyPressedEventArgs.cs │ └── MouseEventArgs.cs ├── ForegroundColor.cs ├── Gradients │ ├── Add.cs │ ├── Blend.cs │ ├── ColorAlgorithm.cs │ ├── LinearGradient.cs │ ├── RadialGradient.cs │ ├── Subtract.cs │ ├── TextureFill.cs │ └── Xor.cs ├── Key.cs ├── Networking │ ├── BinaryInput.cs │ ├── BinaryOutput.cs │ ├── GameDataEventArgs.cs │ ├── MQTT │ │ ├── MqttConnection.cs │ │ ├── MqttContent.cs │ │ ├── MqttControlPacketType.cs │ │ ├── MqttHeader.cs │ │ ├── MqttQualityOfService.cs │ │ └── MqttState.cs │ ├── MultiPlayerEnvironment.cs │ ├── P2P │ │ ├── PeerConnection.cs │ │ ├── PeerToPeerNetwork.cs │ │ └── UdpDatagramEventArgs.cs │ ├── Player.cs │ └── UPnP │ │ ├── DeviceDescriptionDocument.cs │ │ ├── DeviceDescriptionEventArgs.cs │ │ ├── DeviceLocation.cs │ │ ├── DeviceLocationEventArgs.cs │ │ ├── NotificationEventArgs.cs │ │ ├── ServiceDescriptionDocument.cs │ │ ├── ServiceDescriptionEventArgs.cs │ │ ├── Services │ │ ├── SCPD_to_CSharp.xslt │ │ └── urn │ │ │ ├── microsoft.com │ │ │ └── service │ │ │ │ └── X_MS_MediaReceiverRegistrar │ │ │ │ ├── 1.scpd.xml │ │ │ │ └── X_MS_MediaReceiverRegistrar.cs │ │ │ ├── schemas-upnp-org │ │ │ └── service │ │ │ │ ├── ConnectionManager │ │ │ │ ├── 1.scpd.xml │ │ │ │ └── ConnectionManager.cs │ │ │ │ ├── ContentDirectory │ │ │ │ ├── 1.scpd.xml │ │ │ │ └── ContentDirectory.cs │ │ │ │ ├── Layer3Forwarding │ │ │ │ ├── 1.scpd.xml │ │ │ │ └── Layer3ForwardingV1.cs │ │ │ │ ├── WANCommonInterfaceConfig │ │ │ │ ├── 1.scpd.xml │ │ │ │ └── WANCommonInterfaceConfigV1.cs │ │ │ │ ├── WANEthernetLinkConfig │ │ │ │ ├── 1.scpd.xml │ │ │ │ └── WANEthernetLinkConfigV1.cs │ │ │ │ └── WANIPConnection │ │ │ │ ├── 1.scpd.xml │ │ │ │ ├── 2.scpd.xml │ │ │ │ ├── WANIPConnectionV1.cs │ │ │ │ └── WANIPConnectionV2.cs │ │ │ └── schemas-wifialliance-org │ │ │ └── service │ │ │ └── WFAWLANConfig │ │ │ ├── 1.scpd.xml │ │ │ └── WFAWLANConfig.cs │ │ ├── UPnPAction.cs │ │ ├── UPnPArgument.cs │ │ ├── UPnPClient.cs │ │ ├── UPnPDevice.cs │ │ ├── UPnPException.cs │ │ ├── UPnPHeaders.cs │ │ ├── UPnPIcon.cs │ │ ├── UPnPService.cs │ │ └── UPnPStateVariable.cs ├── Properties │ └── AssemblyInfo.cs ├── Raster.cs ├── RetroApplication.cs ├── RetroAttribute.cs ├── RetroSharp.csproj ├── RetroSharp.csproj.user ├── Screen.cs ├── Sprite.cs ├── SpriteTexture.cs └── WavAudio.cs └── Tests ├── RasterBlockSizeBenchmark ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── RasterBlockSizeBenchmark.csproj ├── RasterBlockSizeBenchmark.csproj.user ├── Results.xlsx └── app.config └── Test1 ├── ConsoleApplication.csproj ├── ConsoleApplication.csproj.user ├── Program.cs ├── Properties └── AssemblyInfo.cs └── app.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /Binaries/OpenAL/oalinst.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenAL/oalinst.exe -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Audio/the_ring_that_fell.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Audio/the_ring_that_fell.wav -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Poem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Poem.txt -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Shaders/CubeMap_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Shaders/CubeMap_FS.glsl -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Shaders/CubeMap_VS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Shaders/CubeMap_VS.glsl -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Shaders/JuliaSet_SM2_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Shaders/JuliaSet_SM2_FS.glsl -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Shaders/JuliaSet_SM3_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Shaders/JuliaSet_SM3_FS.glsl -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Shaders/JuliaSet_VS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Shaders/JuliaSet_VS.glsl -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Shaders/Parallax_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Shaders/Parallax_FS.glsl -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Shaders/Parallax_VS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Shaders/Parallax_VS.glsl -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Shaders/Picking_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Shaders/Picking_FS.glsl -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Shaders/Picking_VS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Shaders/Picking_VS.glsl -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Shaders/Simple_FS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Shaders/Simple_FS.glsl -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Shaders/Simple_VS.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Shaders/Simple_VS.glsl -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Textures/JuliaColorTable.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Textures/JuliaColorTable.bmp -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Textures/Swizzled Textures License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Textures/Swizzled Textures License.txt -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Textures/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Textures/cursor.png -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Textures/earth-cubemap.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Textures/earth-cubemap.dds -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Textures/logo-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Textures/logo-dark.jpg -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Textures/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Textures/logo.jpg -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Textures/metal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Textures/metal.jpg -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Textures/swizzled-rock-diffuse-height.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Textures/swizzled-rock-diffuse-height.dds -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Data/Textures/swizzled-rock-normal-gloss.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Data/Textures/swizzled-rock-normal-gloss.dds -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/Examples.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/Examples.exe -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/OpenTK.Compatibility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/OpenTK.Compatibility.dll -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/OpenTK.Compatibility.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/OpenTK.Compatibility.dll.config -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/OpenTK.GLControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/OpenTK.GLControl.dll -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/OpenTK.GLControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/OpenTK.GLControl.xml -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/OpenTK.dll -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/OpenTK.dll.config -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/OpenTK.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/OpenTK.pdb -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/OpenTK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Binaries/OpenTK/Release/OpenTK.xml -------------------------------------------------------------------------------- /Binaries/OpenTK/Release/debug.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/Arithmetics/Koch/Koch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Koch/Koch.csproj -------------------------------------------------------------------------------- /Examples/Arithmetics/Koch/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Koch/Program.cs -------------------------------------------------------------------------------- /Examples/Arithmetics/Koch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Koch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Arithmetics/Koch/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Koch/app.config -------------------------------------------------------------------------------- /Examples/Arithmetics/Mandelbrot/Mandelbrot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Mandelbrot/Mandelbrot.csproj -------------------------------------------------------------------------------- /Examples/Arithmetics/Mandelbrot/Pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Mandelbrot/Pointer.png -------------------------------------------------------------------------------- /Examples/Arithmetics/Mandelbrot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Mandelbrot/Program.cs -------------------------------------------------------------------------------- /Examples/Arithmetics/Mandelbrot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Mandelbrot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Arithmetics/Mandelbrot/Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Mandelbrot/Z.png -------------------------------------------------------------------------------- /Examples/Arithmetics/Mandelbrot/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Mandelbrot/app.config -------------------------------------------------------------------------------- /Examples/Arithmetics/SimpleArithmetics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/SimpleArithmetics/Program.cs -------------------------------------------------------------------------------- /Examples/Arithmetics/SimpleArithmetics/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/SimpleArithmetics/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Arithmetics/SimpleArithmetics/SimpleArithmetics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/SimpleArithmetics/SimpleArithmetics.csproj -------------------------------------------------------------------------------- /Examples/Arithmetics/SimpleArithmetics/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/SimpleArithmetics/app.config -------------------------------------------------------------------------------- /Examples/Arithmetics/Sinus1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Sinus1/Program.cs -------------------------------------------------------------------------------- /Examples/Arithmetics/Sinus1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Sinus1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Arithmetics/Sinus1/Sinus1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Sinus1/Sinus1.csproj -------------------------------------------------------------------------------- /Examples/Arithmetics/Sinus1/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Sinus1/app.config -------------------------------------------------------------------------------- /Examples/Arithmetics/Sinus2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Sinus2/Program.cs -------------------------------------------------------------------------------- /Examples/Arithmetics/Sinus2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Sinus2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Arithmetics/Sinus2/Sinus2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Sinus2/Sinus2.csproj -------------------------------------------------------------------------------- /Examples/Arithmetics/Sinus2/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Arithmetics/Sinus2/app.config -------------------------------------------------------------------------------- /Examples/CharacterTemplate/CharacterTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/CharacterTemplate/CharacterTemplate.csproj -------------------------------------------------------------------------------- /Examples/CharacterTemplate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/CharacterTemplate/Program.cs -------------------------------------------------------------------------------- /Examples/CharacterTemplate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/CharacterTemplate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/CharacterTemplate/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/CharacterTemplate/app.config -------------------------------------------------------------------------------- /Examples/Games/Asteroids/133283__fins__game-over.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/133283__fins__game-over.wav -------------------------------------------------------------------------------- /Examples/Games/Asteroids/133284__fins__level-completed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/133284__fins__level-completed.wav -------------------------------------------------------------------------------- /Examples/Games/Asteroids/172207__fins__teleport.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/172207__fins__teleport.wav -------------------------------------------------------------------------------- /Examples/Games/Asteroids/35643__sandyrb__usat-bomb.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/35643__sandyrb__usat-bomb.wav -------------------------------------------------------------------------------- /Examples/Games/Asteroids/35686__jobro__laser9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/35686__jobro__laser9.wav -------------------------------------------------------------------------------- /Examples/Games/Asteroids/80938__tony-b-kksm__soft-explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/80938__tony-b-kksm__soft-explosion.wav -------------------------------------------------------------------------------- /Examples/Games/Asteroids/Asteroids.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/Asteroids.csproj -------------------------------------------------------------------------------- /Examples/Games/Asteroids/MovingObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/MovingObject.cs -------------------------------------------------------------------------------- /Examples/Games/Asteroids/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/Particle.cs -------------------------------------------------------------------------------- /Examples/Games/Asteroids/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/Program.cs -------------------------------------------------------------------------------- /Examples/Games/Asteroids/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Games/Asteroids/RotatingObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/RotatingObject.cs -------------------------------------------------------------------------------- /Examples/Games/Asteroids/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Asteroids/app.config -------------------------------------------------------------------------------- /Examples/Games/Mask/AnimatedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/AnimatedObject.cs -------------------------------------------------------------------------------- /Examples/Games/Mask/BouncingBall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/BouncingBall.cs -------------------------------------------------------------------------------- /Examples/Games/Mask/Explosion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/Explosion.cs -------------------------------------------------------------------------------- /Examples/Games/Mask/HomingMisslie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/HomingMisslie.cs -------------------------------------------------------------------------------- /Examples/Games/Mask/Mask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/Mask.csproj -------------------------------------------------------------------------------- /Examples/Games/Mask/MovingObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/MovingObject.cs -------------------------------------------------------------------------------- /Examples/Games/Mask/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/Player.cs -------------------------------------------------------------------------------- /Examples/Games/Mask/PlayerPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/PlayerPosition.cs -------------------------------------------------------------------------------- /Examples/Games/Mask/Present.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/Present.cs -------------------------------------------------------------------------------- /Examples/Games/Mask/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/Program.cs -------------------------------------------------------------------------------- /Examples/Games/Mask/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Games/Mask/Shot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/Shot.cs -------------------------------------------------------------------------------- /Examples/Games/Mask/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mask/app.config -------------------------------------------------------------------------------- /Examples/Games/Mines/Mines.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mines/Mines.csproj -------------------------------------------------------------------------------- /Examples/Games/Mines/Pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mines/Pointer.png -------------------------------------------------------------------------------- /Examples/Games/Mines/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mines/Program.cs -------------------------------------------------------------------------------- /Examples/Games/Mines/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mines/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Games/Mines/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Mines/app.config -------------------------------------------------------------------------------- /Examples/Games/Tanks/Graphics/SU-85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Tanks/Graphics/SU-85.png -------------------------------------------------------------------------------- /Examples/Games/Tanks/Graphics/jagtpanther.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Tanks/Graphics/jagtpanther.png -------------------------------------------------------------------------------- /Examples/Games/Tanks/MovingObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Tanks/MovingObject.cs -------------------------------------------------------------------------------- /Examples/Games/Tanks/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Tanks/Particle.cs -------------------------------------------------------------------------------- /Examples/Games/Tanks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Tanks/Program.cs -------------------------------------------------------------------------------- /Examples/Games/Tanks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Tanks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Games/Tanks/Tank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Tanks/Tank.cs -------------------------------------------------------------------------------- /Examples/Games/Tanks/Tank1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Tanks/Tank1.cs -------------------------------------------------------------------------------- /Examples/Games/Tanks/Tank2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Tanks/Tank2.cs -------------------------------------------------------------------------------- /Examples/Games/Tanks/Tanks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Tanks/Tanks.csproj -------------------------------------------------------------------------------- /Examples/Games/Tanks/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/Tanks/app.config -------------------------------------------------------------------------------- /Examples/Games/TextAdventure/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/TextAdventure/Program.cs -------------------------------------------------------------------------------- /Examples/Games/TextAdventure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/TextAdventure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Games/TextAdventure/TextAdventure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/TextAdventure/TextAdventure.csproj -------------------------------------------------------------------------------- /Examples/Games/TextAdventure/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/TextAdventure/app.config -------------------------------------------------------------------------------- /Examples/Games/TextAdventure2/Adventure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/TextAdventure2/Adventure.xml -------------------------------------------------------------------------------- /Examples/Games/TextAdventure2/Adventure.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/TextAdventure2/Adventure.xsd -------------------------------------------------------------------------------- /Examples/Games/TextAdventure2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/TextAdventure2/Program.cs -------------------------------------------------------------------------------- /Examples/Games/TextAdventure2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/TextAdventure2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Games/TextAdventure2/TextAdventure2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/TextAdventure2/TextAdventure2.csproj -------------------------------------------------------------------------------- /Examples/Games/TextAdventure2/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Games/TextAdventure2/app.config -------------------------------------------------------------------------------- /Examples/Networking/Latency/Latency.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/Latency/Latency.csproj -------------------------------------------------------------------------------- /Examples/Networking/Latency/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/Latency/Program.cs -------------------------------------------------------------------------------- /Examples/Networking/Latency/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/Latency/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Networking/Latency/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/Latency/app.config -------------------------------------------------------------------------------- /Examples/Networking/MultiPlayerSetup/MultiPlayerSetup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiPlayerSetup/MultiPlayerSetup.csproj -------------------------------------------------------------------------------- /Examples/Networking/MultiPlayerSetup/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiPlayerSetup/Program.cs -------------------------------------------------------------------------------- /Examples/Networking/MultiPlayerSetup/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiPlayerSetup/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Networking/MultiPlayerSetup/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiPlayerSetup/app.config -------------------------------------------------------------------------------- /Examples/Networking/MultiUserChat/MultiUserChat.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiUserChat/MultiUserChat.csproj -------------------------------------------------------------------------------- /Examples/Networking/MultiUserChat/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiUserChat/Program.cs -------------------------------------------------------------------------------- /Examples/Networking/MultiUserChat/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiUserChat/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Networking/MultiUserChat/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiUserChat/app.config -------------------------------------------------------------------------------- /Examples/Networking/MultiUserDraw/MultiUserDraw.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiUserDraw/MultiUserDraw.csproj -------------------------------------------------------------------------------- /Examples/Networking/MultiUserDraw/Pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiUserDraw/Pointer.png -------------------------------------------------------------------------------- /Examples/Networking/MultiUserDraw/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiUserDraw/Program.cs -------------------------------------------------------------------------------- /Examples/Networking/MultiUserDraw/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiUserDraw/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Networking/MultiUserDraw/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/MultiUserDraw/app.config -------------------------------------------------------------------------------- /Examples/Networking/PeerToPeer/PeerToPeer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/PeerToPeer/PeerToPeer.csproj -------------------------------------------------------------------------------- /Examples/Networking/PeerToPeer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/PeerToPeer/Program.cs -------------------------------------------------------------------------------- /Examples/Networking/PeerToPeer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/PeerToPeer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Networking/PeerToPeer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Networking/PeerToPeer/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/ClipLines/ClipLines.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/ClipLines/ClipLines.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/ClipLines/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/ClipLines/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/ClipLines/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/ClipLines/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/ClipLines/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/ClipLines/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/Gradients/Gradients.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/Gradients/Gradients.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/Gradients/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/Gradients/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/Gradients/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/Gradients/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/Gradients/Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/Gradients/Star.png -------------------------------------------------------------------------------- /Examples/Raster Graphics/Gradients/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/Gradients/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/MoireLines/MoireLines.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/MoireLines/MoireLines.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/MoireLines/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/MoireLines/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/MoireLines/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/MoireLines/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/MoireLines/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/MoireLines/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomBoxes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomBoxes/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomBoxes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomBoxes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomBoxes/RandomBoxes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomBoxes/RandomBoxes.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomBoxes/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomBoxes/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomEllipses/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomEllipses/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomEllipses/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomEllipses/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomEllipses/RandomEllipses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomEllipses/RandomEllipses.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomEllipses/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomEllipses/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomFilledEllipses/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomFilledEllipses/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomFilledEllipses/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomFilledEllipses/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomFilledEllipses/RandomFilledEllipses.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomFilledEllipses/RandomFilledEllipses.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomFilledEllipses/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomFilledEllipses/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomFilledPolygons/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomFilledPolygons/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomFilledPolygons/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomFilledPolygons/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomFilledPolygons/RandomFilledPolygons.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomFilledPolygons/RandomFilledPolygons.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomFilledPolygons/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomFilledPolygons/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomLines/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomLines/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomLines/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomLines/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomLines/RandomLines.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomLines/RandomLines.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomLines/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomLines/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomPlots/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomPlots/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomPlots/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomPlots/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomPlots/RandomPlots.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomPlots/RandomPlots.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomPlots/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomPlots/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomPolygons/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomPolygons/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomPolygons/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomPolygons/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomPolygons/RandomPolygons.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomPolygons/RandomPolygons.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomPolygons/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomPolygons/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRectangles/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRectangles/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRectangles/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRectangles/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRectangles/RandomRectangles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRectangles/RandomRectangles.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRectangles/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRectangles/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRoundedBoxes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRoundedBoxes/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRoundedBoxes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRoundedBoxes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRoundedBoxes/RandomRoundedBoxes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRoundedBoxes/RandomRoundedBoxes.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRoundedBoxes/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRoundedBoxes/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRoundedRectangles/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRoundedRectangles/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRoundedRectangles/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRoundedRectangles/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRoundedRectangles/RandomRoundedRectangles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRoundedRectangles/RandomRoundedRectangles.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/RandomRoundedRectangles/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/RandomRoundedRectangles/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/Stars/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/Stars/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/Stars/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/Stars/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/Stars/Stars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/Stars/Stars.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/Stars/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/Stars/app.config -------------------------------------------------------------------------------- /Examples/Raster Graphics/VennDiagram/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/VennDiagram/Program.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/VennDiagram/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/VennDiagram/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Raster Graphics/VennDiagram/VennDiagram.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/VennDiagram/VennDiagram.csproj -------------------------------------------------------------------------------- /Examples/Raster Graphics/VennDiagram/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Raster Graphics/VennDiagram/app.config -------------------------------------------------------------------------------- /Examples/RasterGraphicsTemplate/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/RasterGraphicsTemplate/Program.cs -------------------------------------------------------------------------------- /Examples/RasterGraphicsTemplate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/RasterGraphicsTemplate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/RasterGraphicsTemplate/RasterGraphicsTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/RasterGraphicsTemplate/RasterGraphicsTemplate.csproj -------------------------------------------------------------------------------- /Examples/RasterGraphicsTemplate/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/RasterGraphicsTemplate/app.config -------------------------------------------------------------------------------- /Examples/Sprites/BouncingBalls/88451__davidou__boing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/BouncingBalls/88451__davidou__boing.wav -------------------------------------------------------------------------------- /Examples/Sprites/BouncingBalls/Ball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/BouncingBalls/Ball.cs -------------------------------------------------------------------------------- /Examples/Sprites/BouncingBalls/Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/BouncingBalls/Ball.png -------------------------------------------------------------------------------- /Examples/Sprites/BouncingBalls/BouncingBalls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/BouncingBalls/BouncingBalls.csproj -------------------------------------------------------------------------------- /Examples/Sprites/BouncingBalls/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/BouncingBalls/Program.cs -------------------------------------------------------------------------------- /Examples/Sprites/BouncingBalls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/BouncingBalls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Sprites/BouncingBalls/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/BouncingBalls/app.config -------------------------------------------------------------------------------- /Examples/Sprites/MousePointer/MousePointer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/MousePointer/MousePointer.csproj -------------------------------------------------------------------------------- /Examples/Sprites/MousePointer/Pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/MousePointer/Pointer.png -------------------------------------------------------------------------------- /Examples/Sprites/MousePointer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/MousePointer/Program.cs -------------------------------------------------------------------------------- /Examples/Sprites/MousePointer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/MousePointer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Sprites/MousePointer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Sprites/MousePointer/app.config -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter1/BouncingCharacter1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter1/BouncingCharacter1.csproj -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter1/Program.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter1/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter1/app.config -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter2/BouncingCharacter2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter2/BouncingCharacter2.csproj -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter2/Program.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter2/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter2/app.config -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter3/BouncingCharacter3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter3/BouncingCharacter3.csproj -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter3/Program.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter3/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter3/app.config -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter4/BouncingCharacter4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter4/BouncingCharacter4.csproj -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter4/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter4/Program.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter4/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter4/app.config -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter5/88451__davidou__boing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter5/88451__davidou__boing.wav -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter5/BouncingCharacter5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter5/BouncingCharacter5.csproj -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter5/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter5/Program.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/BouncingCharacter5/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/BouncingCharacter5/app.config -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/CreateLabyrinth/CreateLabyrinth.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/CreateLabyrinth/CreateLabyrinth.csproj -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/CreateLabyrinth/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/CreateLabyrinth/Program.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/CreateLabyrinth/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/CreateLabyrinth/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Text Screen Manipulation/CreateLabyrinth/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text Screen Manipulation/CreateLabyrinth/app.config -------------------------------------------------------------------------------- /Examples/Text and Strings/GuessANumber/GuessANumber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text and Strings/GuessANumber/GuessANumber.csproj -------------------------------------------------------------------------------- /Examples/Text and Strings/GuessANumber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text and Strings/GuessANumber/Program.cs -------------------------------------------------------------------------------- /Examples/Text and Strings/GuessANumber/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text and Strings/GuessANumber/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Text and Strings/GuessANumber/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text and Strings/GuessANumber/app.config -------------------------------------------------------------------------------- /Examples/Text and Strings/HelloWorld/HelloWorld.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text and Strings/HelloWorld/HelloWorld.csproj -------------------------------------------------------------------------------- /Examples/Text and Strings/HelloWorld/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text and Strings/HelloWorld/Program.cs -------------------------------------------------------------------------------- /Examples/Text and Strings/HelloWorld/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text and Strings/HelloWorld/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Examples/Text and Strings/HelloWorld/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Examples/Text and Strings/HelloWorld/app.config -------------------------------------------------------------------------------- /Executables/Asteroids.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/Asteroids.zip -------------------------------------------------------------------------------- /Executables/BouncingBalls.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/BouncingBalls.zip -------------------------------------------------------------------------------- /Executables/BouncingCharacter1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/BouncingCharacter1.zip -------------------------------------------------------------------------------- /Executables/BouncingCharacter2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/BouncingCharacter2.zip -------------------------------------------------------------------------------- /Executables/BouncingCharacter3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/BouncingCharacter3.zip -------------------------------------------------------------------------------- /Executables/BouncingCharacter4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/BouncingCharacter4.zip -------------------------------------------------------------------------------- /Executables/BouncingCharacter5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/BouncingCharacter5.zip -------------------------------------------------------------------------------- /Executables/ClipLines.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/ClipLines.zip -------------------------------------------------------------------------------- /Executables/CreateLabyrinth.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/CreateLabyrinth.zip -------------------------------------------------------------------------------- /Executables/Gradients.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/Gradients.zip -------------------------------------------------------------------------------- /Executables/GuessANumber.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/GuessANumber.zip -------------------------------------------------------------------------------- /Executables/HelloWorld.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/HelloWorld.zip -------------------------------------------------------------------------------- /Executables/Koch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/Koch.zip -------------------------------------------------------------------------------- /Executables/Latency.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/Latency.zip -------------------------------------------------------------------------------- /Executables/Mandelbrot.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/Mandelbrot.zip -------------------------------------------------------------------------------- /Executables/Mask.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/Mask.zip -------------------------------------------------------------------------------- /Executables/Mines.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/Mines.zip -------------------------------------------------------------------------------- /Executables/MoireLines.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/MoireLines.zip -------------------------------------------------------------------------------- /Executables/MousePointer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/MousePointer.zip -------------------------------------------------------------------------------- /Executables/MultiPlayerSetup.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/MultiPlayerSetup.zip -------------------------------------------------------------------------------- /Executables/MultiUserChat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/MultiUserChat.zip -------------------------------------------------------------------------------- /Executables/MultiUserDraw.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/MultiUserDraw.zip -------------------------------------------------------------------------------- /Executables/PeerToPeer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/PeerToPeer.zip -------------------------------------------------------------------------------- /Executables/RandomBoxes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/RandomBoxes.zip -------------------------------------------------------------------------------- /Executables/RandomEllipses.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/RandomEllipses.zip -------------------------------------------------------------------------------- /Executables/RandomFilledEllipses.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/RandomFilledEllipses.zip -------------------------------------------------------------------------------- /Executables/RandomFilledPolygons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/RandomFilledPolygons.zip -------------------------------------------------------------------------------- /Executables/RandomLines.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/RandomLines.zip -------------------------------------------------------------------------------- /Executables/RandomPlots.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/RandomPlots.zip -------------------------------------------------------------------------------- /Executables/RandomPolygons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/RandomPolygons.zip -------------------------------------------------------------------------------- /Executables/RandomRectangles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/RandomRectangles.zip -------------------------------------------------------------------------------- /Executables/RandomRoundedBoxes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/RandomRoundedBoxes.zip -------------------------------------------------------------------------------- /Executables/RandomRoundedRectangles.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/RandomRoundedRectangles.zip -------------------------------------------------------------------------------- /Executables/SimpleArithmetics.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/SimpleArithmetics.zip -------------------------------------------------------------------------------- /Executables/Sinus1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/Sinus1.zip -------------------------------------------------------------------------------- /Executables/Sinus2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/Sinus2.zip -------------------------------------------------------------------------------- /Executables/Stars.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/Stars.zip -------------------------------------------------------------------------------- /Executables/Tanks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/Tanks.zip -------------------------------------------------------------------------------- /Executables/TextAdventure.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/TextAdventure.zip -------------------------------------------------------------------------------- /Executables/TextAdventure2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/TextAdventure2.zip -------------------------------------------------------------------------------- /Executables/UpdateExecutables.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/UpdateExecutables.bat -------------------------------------------------------------------------------- /Executables/VennDiagram.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Executables/VennDiagram.zip -------------------------------------------------------------------------------- /Images/Asteroids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Asteroids.png -------------------------------------------------------------------------------- /Images/Asteroids_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Asteroids_20.png -------------------------------------------------------------------------------- /Images/BouncingBalls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingBalls.png -------------------------------------------------------------------------------- /Images/BouncingBalls_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingBalls_20.png -------------------------------------------------------------------------------- /Images/BouncingCharacter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingCharacter1.png -------------------------------------------------------------------------------- /Images/BouncingCharacter1_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingCharacter1_20.png -------------------------------------------------------------------------------- /Images/BouncingCharacter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingCharacter2.png -------------------------------------------------------------------------------- /Images/BouncingCharacter2_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingCharacter2_20.png -------------------------------------------------------------------------------- /Images/BouncingCharacter3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingCharacter3.png -------------------------------------------------------------------------------- /Images/BouncingCharacter3_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingCharacter3_20.png -------------------------------------------------------------------------------- /Images/BouncingCharacter4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingCharacter4.png -------------------------------------------------------------------------------- /Images/BouncingCharacter4_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingCharacter4_20.png -------------------------------------------------------------------------------- /Images/BouncingCharacter5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingCharacter5.png -------------------------------------------------------------------------------- /Images/BouncingCharacter5_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/BouncingCharacter5_20.png -------------------------------------------------------------------------------- /Images/ClipLines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/ClipLines.png -------------------------------------------------------------------------------- /Images/ClipLines_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/ClipLines_20.png -------------------------------------------------------------------------------- /Images/CreateLabyrinth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/CreateLabyrinth.png -------------------------------------------------------------------------------- /Images/CreateLabyrinth_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/CreateLabyrinth_20.png -------------------------------------------------------------------------------- /Images/Gradients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Gradients.png -------------------------------------------------------------------------------- /Images/Gradients_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Gradients_20.png -------------------------------------------------------------------------------- /Images/GuessANumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/GuessANumber.png -------------------------------------------------------------------------------- /Images/GuessANumber_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/GuessANumber_20.png -------------------------------------------------------------------------------- /Images/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/HelloWorld.png -------------------------------------------------------------------------------- /Images/HelloWorld_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/HelloWorld_20.png -------------------------------------------------------------------------------- /Images/Koch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Koch.png -------------------------------------------------------------------------------- /Images/Koch_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Koch_20.png -------------------------------------------------------------------------------- /Images/Latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Latency.png -------------------------------------------------------------------------------- /Images/Latency_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Latency_20.png -------------------------------------------------------------------------------- /Images/Mandelbrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Mandelbrot.png -------------------------------------------------------------------------------- /Images/Mandelbrot_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Mandelbrot_20.png -------------------------------------------------------------------------------- /Images/Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Mask.png -------------------------------------------------------------------------------- /Images/Mask_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Mask_20.png -------------------------------------------------------------------------------- /Images/Mines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Mines.png -------------------------------------------------------------------------------- /Images/Mines_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Mines_20.png -------------------------------------------------------------------------------- /Images/MoireLines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/MoireLines.png -------------------------------------------------------------------------------- /Images/MoireLines_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/MoireLines_20.png -------------------------------------------------------------------------------- /Images/MousePointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/MousePointer.png -------------------------------------------------------------------------------- /Images/MousePointer_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/MousePointer_20.png -------------------------------------------------------------------------------- /Images/MultiPlayerSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/MultiPlayerSetup.png -------------------------------------------------------------------------------- /Images/MultiPlayerSetup_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/MultiPlayerSetup_20.png -------------------------------------------------------------------------------- /Images/MultiUserChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/MultiUserChat.png -------------------------------------------------------------------------------- /Images/MultiUserChat_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/MultiUserChat_20.png -------------------------------------------------------------------------------- /Images/MultiUserDraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/MultiUserDraw.png -------------------------------------------------------------------------------- /Images/MultiUserDraw_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/MultiUserDraw_20.png -------------------------------------------------------------------------------- /Images/PeerToPeer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/PeerToPeer.png -------------------------------------------------------------------------------- /Images/PeerToPeer_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/PeerToPeer_20.png -------------------------------------------------------------------------------- /Images/RandomBoxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomBoxes.png -------------------------------------------------------------------------------- /Images/RandomBoxes_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomBoxes_20.png -------------------------------------------------------------------------------- /Images/RandomEllipses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomEllipses.png -------------------------------------------------------------------------------- /Images/RandomEllipses_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomEllipses_20.png -------------------------------------------------------------------------------- /Images/RandomFilledEllipses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomFilledEllipses.png -------------------------------------------------------------------------------- /Images/RandomFilledEllipses_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomFilledEllipses_20.png -------------------------------------------------------------------------------- /Images/RandomFilledPolygons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomFilledPolygons.png -------------------------------------------------------------------------------- /Images/RandomFilledPolygons_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomFilledPolygons_20.png -------------------------------------------------------------------------------- /Images/RandomLines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomLines.png -------------------------------------------------------------------------------- /Images/RandomLines_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomLines_20.png -------------------------------------------------------------------------------- /Images/RandomPlots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomPlots.png -------------------------------------------------------------------------------- /Images/RandomPlots_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomPlots_20.png -------------------------------------------------------------------------------- /Images/RandomPolygons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomPolygons.png -------------------------------------------------------------------------------- /Images/RandomPolygons_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomPolygons_20.png -------------------------------------------------------------------------------- /Images/RandomRectangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomRectangles.png -------------------------------------------------------------------------------- /Images/RandomRectangles_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomRectangles_20.png -------------------------------------------------------------------------------- /Images/RandomRoundedBoxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomRoundedBoxes.png -------------------------------------------------------------------------------- /Images/RandomRoundedBoxes_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomRoundedBoxes_20.png -------------------------------------------------------------------------------- /Images/RandomRoundedRectangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomRoundedRectangles.png -------------------------------------------------------------------------------- /Images/RandomRoundedRectangles_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/RandomRoundedRectangles_20.png -------------------------------------------------------------------------------- /Images/SimpleArithmetics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/SimpleArithmetics.png -------------------------------------------------------------------------------- /Images/SimpleArithmetics_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/SimpleArithmetics_20.png -------------------------------------------------------------------------------- /Images/Sinus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Sinus1.png -------------------------------------------------------------------------------- /Images/Sinus1_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Sinus1_20.png -------------------------------------------------------------------------------- /Images/Sinus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Sinus2.png -------------------------------------------------------------------------------- /Images/Sinus2_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Sinus2_20.png -------------------------------------------------------------------------------- /Images/Stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Stars.png -------------------------------------------------------------------------------- /Images/Stars_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/Stars_20.png -------------------------------------------------------------------------------- /Images/TextAdventure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/TextAdventure.png -------------------------------------------------------------------------------- /Images/TextAdventure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/TextAdventure2.png -------------------------------------------------------------------------------- /Images/TextAdventure2_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/TextAdventure2_20.png -------------------------------------------------------------------------------- /Images/TextAdventure_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/TextAdventure_20.png -------------------------------------------------------------------------------- /Images/VennDiagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/VennDiagram.png -------------------------------------------------------------------------------- /Images/VennDiagram_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Images/VennDiagram_20.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/README.md -------------------------------------------------------------------------------- /RetroSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp.sln -------------------------------------------------------------------------------- /RetroSharp.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp.suo -------------------------------------------------------------------------------- /RetroSharp/Attributes/AspectRatioAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Attributes/AspectRatioAttribute.cs -------------------------------------------------------------------------------- /RetroSharp/Attributes/CharacterSetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Attributes/CharacterSetAttribute.cs -------------------------------------------------------------------------------- /RetroSharp/Attributes/CharactersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Attributes/CharactersAttribute.cs -------------------------------------------------------------------------------- /RetroSharp/Attributes/RasterGraphicsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Attributes/RasterGraphicsAttribute.cs -------------------------------------------------------------------------------- /RetroSharp/Attributes/ScreenBorderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Attributes/ScreenBorderAttribute.cs -------------------------------------------------------------------------------- /RetroSharp/BackgroundColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/BackgroundColor.cs -------------------------------------------------------------------------------- /RetroSharp/C64Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/C64Colors.cs -------------------------------------------------------------------------------- /RetroSharp/ColorStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/ColorStop.cs -------------------------------------------------------------------------------- /RetroSharp/CtrlCException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/CtrlCException.cs -------------------------------------------------------------------------------- /RetroSharp/Enumerations/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Enumerations/Key.cs -------------------------------------------------------------------------------- /RetroSharp/EventArguments/ElapsedTimeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/EventArguments/ElapsedTimeEventArgs.cs -------------------------------------------------------------------------------- /RetroSharp/EventArguments/KeyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/EventArguments/KeyEventArgs.cs -------------------------------------------------------------------------------- /RetroSharp/EventArguments/KeyPressedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/EventArguments/KeyPressedEventArgs.cs -------------------------------------------------------------------------------- /RetroSharp/EventArguments/MouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/EventArguments/MouseEventArgs.cs -------------------------------------------------------------------------------- /RetroSharp/ForegroundColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/ForegroundColor.cs -------------------------------------------------------------------------------- /RetroSharp/Gradients/Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Gradients/Add.cs -------------------------------------------------------------------------------- /RetroSharp/Gradients/Blend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Gradients/Blend.cs -------------------------------------------------------------------------------- /RetroSharp/Gradients/ColorAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Gradients/ColorAlgorithm.cs -------------------------------------------------------------------------------- /RetroSharp/Gradients/LinearGradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Gradients/LinearGradient.cs -------------------------------------------------------------------------------- /RetroSharp/Gradients/RadialGradient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Gradients/RadialGradient.cs -------------------------------------------------------------------------------- /RetroSharp/Gradients/Subtract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Gradients/Subtract.cs -------------------------------------------------------------------------------- /RetroSharp/Gradients/TextureFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Gradients/TextureFill.cs -------------------------------------------------------------------------------- /RetroSharp/Gradients/Xor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Gradients/Xor.cs -------------------------------------------------------------------------------- /RetroSharp/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Key.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/BinaryInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/BinaryInput.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/BinaryOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/BinaryOutput.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/GameDataEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/GameDataEventArgs.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/MQTT/MqttConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/MQTT/MqttConnection.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/MQTT/MqttContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/MQTT/MqttContent.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/MQTT/MqttControlPacketType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/MQTT/MqttControlPacketType.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/MQTT/MqttHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/MQTT/MqttHeader.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/MQTT/MqttQualityOfService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/MQTT/MqttQualityOfService.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/MQTT/MqttState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/MQTT/MqttState.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/MultiPlayerEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/MultiPlayerEnvironment.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/P2P/PeerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/P2P/PeerConnection.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/P2P/PeerToPeerNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/P2P/PeerToPeerNetwork.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/P2P/UdpDatagramEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/P2P/UdpDatagramEventArgs.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/Player.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/DeviceDescriptionDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/DeviceDescriptionDocument.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/DeviceDescriptionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/DeviceDescriptionEventArgs.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/DeviceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/DeviceLocation.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/DeviceLocationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/DeviceLocationEventArgs.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/NotificationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/NotificationEventArgs.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/ServiceDescriptionDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/ServiceDescriptionDocument.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/ServiceDescriptionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/ServiceDescriptionEventArgs.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/SCPD_to_CSharp.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/SCPD_to_CSharp.xslt -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/microsoft.com/service/X_MS_MediaReceiverRegistrar/1.scpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/microsoft.com/service/X_MS_MediaReceiverRegistrar/1.scpd.xml -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/microsoft.com/service/X_MS_MediaReceiverRegistrar/X_MS_MediaReceiverRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/microsoft.com/service/X_MS_MediaReceiverRegistrar/X_MS_MediaReceiverRegistrar.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/ConnectionManager/1.scpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/ConnectionManager/1.scpd.xml -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/ConnectionManager/ConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/ConnectionManager/ConnectionManager.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/ContentDirectory/1.scpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/ContentDirectory/1.scpd.xml -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/ContentDirectory/ContentDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/ContentDirectory/ContentDirectory.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/Layer3Forwarding/1.scpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/Layer3Forwarding/1.scpd.xml -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/Layer3Forwarding/Layer3ForwardingV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/Layer3Forwarding/Layer3ForwardingV1.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANCommonInterfaceConfig/1.scpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANCommonInterfaceConfig/1.scpd.xml -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANCommonInterfaceConfig/WANCommonInterfaceConfigV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANCommonInterfaceConfig/WANCommonInterfaceConfigV1.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANEthernetLinkConfig/1.scpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANEthernetLinkConfig/1.scpd.xml -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANEthernetLinkConfig/WANEthernetLinkConfigV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANEthernetLinkConfig/WANEthernetLinkConfigV1.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANIPConnection/1.scpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANIPConnection/1.scpd.xml -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANIPConnection/2.scpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANIPConnection/2.scpd.xml -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANIPConnection/WANIPConnectionV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANIPConnection/WANIPConnectionV1.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANIPConnection/WANIPConnectionV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-upnp-org/service/WANIPConnection/WANIPConnectionV2.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-wifialliance-org/service/WFAWLANConfig/1.scpd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-wifialliance-org/service/WFAWLANConfig/1.scpd.xml -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/Services/urn/schemas-wifialliance-org/service/WFAWLANConfig/WFAWLANConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/Services/urn/schemas-wifialliance-org/service/WFAWLANConfig/WFAWLANConfig.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/UPnPAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/UPnPAction.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/UPnPArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/UPnPArgument.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/UPnPClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/UPnPClient.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/UPnPDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/UPnPDevice.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/UPnPException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/UPnPException.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/UPnPHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/UPnPHeaders.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/UPnPIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/UPnPIcon.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/UPnPService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/UPnPService.cs -------------------------------------------------------------------------------- /RetroSharp/Networking/UPnP/UPnPStateVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Networking/UPnP/UPnPStateVariable.cs -------------------------------------------------------------------------------- /RetroSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RetroSharp/Raster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Raster.cs -------------------------------------------------------------------------------- /RetroSharp/RetroApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/RetroApplication.cs -------------------------------------------------------------------------------- /RetroSharp/RetroAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/RetroAttribute.cs -------------------------------------------------------------------------------- /RetroSharp/RetroSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/RetroSharp.csproj -------------------------------------------------------------------------------- /RetroSharp/RetroSharp.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/RetroSharp.csproj.user -------------------------------------------------------------------------------- /RetroSharp/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Screen.cs -------------------------------------------------------------------------------- /RetroSharp/Sprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/Sprite.cs -------------------------------------------------------------------------------- /RetroSharp/SpriteTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/SpriteTexture.cs -------------------------------------------------------------------------------- /RetroSharp/WavAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/RetroSharp/WavAudio.cs -------------------------------------------------------------------------------- /Tests/RasterBlockSizeBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Tests/RasterBlockSizeBenchmark/Program.cs -------------------------------------------------------------------------------- /Tests/RasterBlockSizeBenchmark/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Tests/RasterBlockSizeBenchmark/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/RasterBlockSizeBenchmark/RasterBlockSizeBenchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Tests/RasterBlockSizeBenchmark/RasterBlockSizeBenchmark.csproj -------------------------------------------------------------------------------- /Tests/RasterBlockSizeBenchmark/RasterBlockSizeBenchmark.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Tests/RasterBlockSizeBenchmark/RasterBlockSizeBenchmark.csproj.user -------------------------------------------------------------------------------- /Tests/RasterBlockSizeBenchmark/Results.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Tests/RasterBlockSizeBenchmark/Results.xlsx -------------------------------------------------------------------------------- /Tests/RasterBlockSizeBenchmark/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Tests/RasterBlockSizeBenchmark/app.config -------------------------------------------------------------------------------- /Tests/Test1/ConsoleApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Tests/Test1/ConsoleApplication.csproj -------------------------------------------------------------------------------- /Tests/Test1/ConsoleApplication.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Tests/Test1/ConsoleApplication.csproj.user -------------------------------------------------------------------------------- /Tests/Test1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Tests/Test1/Program.cs -------------------------------------------------------------------------------- /Tests/Test1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Tests/Test1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Test1/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterWaher/RetroSharp/HEAD/Tests/Test1/app.config --------------------------------------------------------------------------------