├── .gitignore ├── LICENSE ├── ProjectStarlight.Interchange.csproj ├── ProjectStarlight.Interchange.sln ├── ProjectStarlight.Interchange.sln.DotSettings ├── Properties └── AssemblyInfo.cs ├── README.md ├── TextureGIF.cs ├── Utilities ├── FrameUtilities.cs └── GIFBuilder.cs └── lib ├── FNA.dll ├── Microsoft.Xna.Framework.Graphics.dll └── Microsoft.Xna.Framework.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectStarlight.Interchange.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/ProjectStarlight.Interchange.csproj -------------------------------------------------------------------------------- /ProjectStarlight.Interchange.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/ProjectStarlight.Interchange.sln -------------------------------------------------------------------------------- /ProjectStarlight.Interchange.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/ProjectStarlight.Interchange.sln.DotSettings -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/README.md -------------------------------------------------------------------------------- /TextureGIF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/TextureGIF.cs -------------------------------------------------------------------------------- /Utilities/FrameUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/Utilities/FrameUtilities.cs -------------------------------------------------------------------------------- /Utilities/GIFBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/Utilities/GIFBuilder.cs -------------------------------------------------------------------------------- /lib/FNA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/lib/FNA.dll -------------------------------------------------------------------------------- /lib/Microsoft.Xna.Framework.Graphics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/lib/Microsoft.Xna.Framework.Graphics.dll -------------------------------------------------------------------------------- /lib/Microsoft.Xna.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectStarlight/ProjectStarlight.Interchange/HEAD/lib/Microsoft.Xna.Framework.dll --------------------------------------------------------------------------------