├── .gitignore ├── LICENSE.txt ├── LilyPath.MacOS.sln ├── LilyPath.WP8.sln ├── LilyPath.Windows8.sln ├── LilyPath.Xna.sln ├── LilyPath.sln ├── LilyPath ├── Brush.cs ├── Brushes │ └── CheckerBrush.cs ├── DrawBatch.cs ├── DrawCache.cs ├── Enums.cs ├── GraphicsPath.cs ├── LilyPath.MacOS.csproj ├── LilyPath.WP8.csproj ├── LilyPath.Windows8.csproj ├── LilyPath.Xna.csproj ├── LilyPath.csproj ├── LineCapInfo.cs ├── PathBuilder.cs ├── Pen.cs ├── Pens │ ├── GradientPen.cs │ └── PathGradientPen.cs ├── Properties │ ├── AssemblyInfo.WP8.cs │ └── AssemblyInfo.cs ├── Shapes │ └── Grid.cs ├── SolidColorBrush.cs ├── TextureBrush.cs ├── Triangulator.cs └── Utility │ ├── Buffer.cs │ ├── PenWorkspace.cs │ ├── Pool.cs │ ├── Pools.cs │ └── ZeroList.cs ├── LilyPathDemo ├── Attributes.cs ├── DrawingControl.cs ├── GraphicsDeviceControl.cs ├── GraphicsDeviceService.cs ├── LilyPathDemo.csproj ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ServiceContainer.cs ├── TestSheet.cs ├── TestSheets │ ├── Arcs1.cs │ ├── Arcs2.cs │ ├── ClosedArcs.cs │ ├── CubicBezier.cs │ ├── Ellipses.cs │ ├── FilledArcs.cs │ ├── FilledEllipses.cs │ ├── FilledShapes.cs │ ├── GradientPens.cs │ ├── GradientPensAlignment.cs │ ├── GraphicsPath.cs │ ├── GraphicsPathOutline.cs │ ├── GridShape.cs │ ├── LineCaps.cs │ ├── Mystify.cs │ ├── OutlineShapes.cs │ ├── PenAlignment.cs │ ├── PrimitiveArcs1.cs │ ├── PrimitiveArcs2.cs │ ├── PrimitiveClosedArcs.cs │ ├── PrimitiveEllipses.cs │ ├── PrimitiveShapes.cs │ ├── QuadraticBezier.cs │ ├── TextureFill.cs │ └── WaterLilly.cs └── ThirdParty │ └── GLControl │ ├── CarbonGLControl.cs │ ├── DummyGLControl.cs │ ├── GLControl.cs │ ├── GLControl.designer.cs │ ├── GLControl.resx │ ├── GLControlFactory.cs │ ├── IGLControl.cs │ ├── WinGLControl.cs │ └── X11GLControl.cs ├── LilyPathLogo ├── Assets │ ├── Logo.png │ ├── SmallLogo.png │ ├── SplashScreen.png │ └── StoreLogo.png ├── Game.ico ├── Game1.cs ├── GameThumbnail.png ├── LilyPathLogo.Windows8.csproj ├── LilyPathLogo.Windows8_TemporaryKey.pfx ├── LilyPathLogo.csproj ├── Package.appxmanifest ├── Program.Windows8.cs ├── Program.cs └── Properties │ └── AssemblyInfo.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LilyPath.MacOS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath.MacOS.sln -------------------------------------------------------------------------------- /LilyPath.WP8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath.WP8.sln -------------------------------------------------------------------------------- /LilyPath.Windows8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath.Windows8.sln -------------------------------------------------------------------------------- /LilyPath.Xna.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath.Xna.sln -------------------------------------------------------------------------------- /LilyPath.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath.sln -------------------------------------------------------------------------------- /LilyPath/Brush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Brush.cs -------------------------------------------------------------------------------- /LilyPath/Brushes/CheckerBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Brushes/CheckerBrush.cs -------------------------------------------------------------------------------- /LilyPath/DrawBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/DrawBatch.cs -------------------------------------------------------------------------------- /LilyPath/DrawCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/DrawCache.cs -------------------------------------------------------------------------------- /LilyPath/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Enums.cs -------------------------------------------------------------------------------- /LilyPath/GraphicsPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/GraphicsPath.cs -------------------------------------------------------------------------------- /LilyPath/LilyPath.MacOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/LilyPath.MacOS.csproj -------------------------------------------------------------------------------- /LilyPath/LilyPath.WP8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/LilyPath.WP8.csproj -------------------------------------------------------------------------------- /LilyPath/LilyPath.Windows8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/LilyPath.Windows8.csproj -------------------------------------------------------------------------------- /LilyPath/LilyPath.Xna.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/LilyPath.Xna.csproj -------------------------------------------------------------------------------- /LilyPath/LilyPath.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/LilyPath.csproj -------------------------------------------------------------------------------- /LilyPath/LineCapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/LineCapInfo.cs -------------------------------------------------------------------------------- /LilyPath/PathBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/PathBuilder.cs -------------------------------------------------------------------------------- /LilyPath/Pen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Pen.cs -------------------------------------------------------------------------------- /LilyPath/Pens/GradientPen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Pens/GradientPen.cs -------------------------------------------------------------------------------- /LilyPath/Pens/PathGradientPen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Pens/PathGradientPen.cs -------------------------------------------------------------------------------- /LilyPath/Properties/AssemblyInfo.WP8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Properties/AssemblyInfo.WP8.cs -------------------------------------------------------------------------------- /LilyPath/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LilyPath/Shapes/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Shapes/Grid.cs -------------------------------------------------------------------------------- /LilyPath/SolidColorBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/SolidColorBrush.cs -------------------------------------------------------------------------------- /LilyPath/TextureBrush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/TextureBrush.cs -------------------------------------------------------------------------------- /LilyPath/Triangulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Triangulator.cs -------------------------------------------------------------------------------- /LilyPath/Utility/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Utility/Buffer.cs -------------------------------------------------------------------------------- /LilyPath/Utility/PenWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Utility/PenWorkspace.cs -------------------------------------------------------------------------------- /LilyPath/Utility/Pool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Utility/Pool.cs -------------------------------------------------------------------------------- /LilyPath/Utility/Pools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Utility/Pools.cs -------------------------------------------------------------------------------- /LilyPath/Utility/ZeroList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPath/Utility/ZeroList.cs -------------------------------------------------------------------------------- /LilyPathDemo/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/Attributes.cs -------------------------------------------------------------------------------- /LilyPathDemo/DrawingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/DrawingControl.cs -------------------------------------------------------------------------------- /LilyPathDemo/GraphicsDeviceControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/GraphicsDeviceControl.cs -------------------------------------------------------------------------------- /LilyPathDemo/GraphicsDeviceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/GraphicsDeviceService.cs -------------------------------------------------------------------------------- /LilyPathDemo/LilyPathDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/LilyPathDemo.csproj -------------------------------------------------------------------------------- /LilyPathDemo/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/MainForm.Designer.cs -------------------------------------------------------------------------------- /LilyPathDemo/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/MainForm.cs -------------------------------------------------------------------------------- /LilyPathDemo/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/MainForm.resx -------------------------------------------------------------------------------- /LilyPathDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/Program.cs -------------------------------------------------------------------------------- /LilyPathDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LilyPathDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LilyPathDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /LilyPathDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LilyPathDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /LilyPathDemo/ServiceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/ServiceContainer.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheet.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/Arcs1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/Arcs1.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/Arcs2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/Arcs2.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/ClosedArcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/ClosedArcs.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/CubicBezier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/CubicBezier.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/Ellipses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/Ellipses.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/FilledArcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/FilledArcs.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/FilledEllipses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/FilledEllipses.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/FilledShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/FilledShapes.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/GradientPens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/GradientPens.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/GradientPensAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/GradientPensAlignment.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/GraphicsPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/GraphicsPath.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/GraphicsPathOutline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/GraphicsPathOutline.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/GridShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/GridShape.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/LineCaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/LineCaps.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/Mystify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/Mystify.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/OutlineShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/OutlineShapes.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/PenAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/PenAlignment.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/PrimitiveArcs1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/PrimitiveArcs1.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/PrimitiveArcs2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/PrimitiveArcs2.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/PrimitiveClosedArcs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/PrimitiveClosedArcs.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/PrimitiveEllipses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/PrimitiveEllipses.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/PrimitiveShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/PrimitiveShapes.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/QuadraticBezier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/QuadraticBezier.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/TextureFill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/TextureFill.cs -------------------------------------------------------------------------------- /LilyPathDemo/TestSheets/WaterLilly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/TestSheets/WaterLilly.cs -------------------------------------------------------------------------------- /LilyPathDemo/ThirdParty/GLControl/CarbonGLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/ThirdParty/GLControl/CarbonGLControl.cs -------------------------------------------------------------------------------- /LilyPathDemo/ThirdParty/GLControl/DummyGLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/ThirdParty/GLControl/DummyGLControl.cs -------------------------------------------------------------------------------- /LilyPathDemo/ThirdParty/GLControl/GLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/ThirdParty/GLControl/GLControl.cs -------------------------------------------------------------------------------- /LilyPathDemo/ThirdParty/GLControl/GLControl.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/ThirdParty/GLControl/GLControl.designer.cs -------------------------------------------------------------------------------- /LilyPathDemo/ThirdParty/GLControl/GLControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/ThirdParty/GLControl/GLControl.resx -------------------------------------------------------------------------------- /LilyPathDemo/ThirdParty/GLControl/GLControlFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/ThirdParty/GLControl/GLControlFactory.cs -------------------------------------------------------------------------------- /LilyPathDemo/ThirdParty/GLControl/IGLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/ThirdParty/GLControl/IGLControl.cs -------------------------------------------------------------------------------- /LilyPathDemo/ThirdParty/GLControl/WinGLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/ThirdParty/GLControl/WinGLControl.cs -------------------------------------------------------------------------------- /LilyPathDemo/ThirdParty/GLControl/X11GLControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathDemo/ThirdParty/GLControl/X11GLControl.cs -------------------------------------------------------------------------------- /LilyPathLogo/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/Assets/Logo.png -------------------------------------------------------------------------------- /LilyPathLogo/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/Assets/SmallLogo.png -------------------------------------------------------------------------------- /LilyPathLogo/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/Assets/SplashScreen.png -------------------------------------------------------------------------------- /LilyPathLogo/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/Assets/StoreLogo.png -------------------------------------------------------------------------------- /LilyPathLogo/Game.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/Game.ico -------------------------------------------------------------------------------- /LilyPathLogo/Game1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/Game1.cs -------------------------------------------------------------------------------- /LilyPathLogo/GameThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/GameThumbnail.png -------------------------------------------------------------------------------- /LilyPathLogo/LilyPathLogo.Windows8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/LilyPathLogo.Windows8.csproj -------------------------------------------------------------------------------- /LilyPathLogo/LilyPathLogo.Windows8_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/LilyPathLogo.Windows8_TemporaryKey.pfx -------------------------------------------------------------------------------- /LilyPathLogo/LilyPathLogo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/LilyPathLogo.csproj -------------------------------------------------------------------------------- /LilyPathLogo/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/Package.appxmanifest -------------------------------------------------------------------------------- /LilyPathLogo/Program.Windows8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/Program.Windows8.cs -------------------------------------------------------------------------------- /LilyPathLogo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/Program.cs -------------------------------------------------------------------------------- /LilyPathLogo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/LilyPathLogo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaquadro/LilyPath/HEAD/README.md --------------------------------------------------------------------------------