├── .gitattributes ├── LICENSE ├── SM64Paint ├── App.config ├── F3DParser.cs ├── FodyWeavers.xml ├── GPL_License.txt ├── GeoLayouts.cs ├── LevelScriptParser.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── OpenTK.dll.config ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest ├── ROM.cs ├── ROMManager.cs ├── Renderer.cs ├── SM64Paint.csproj ├── SM64Paint.csproj.user ├── SM64Paint.ico ├── Textures.cs ├── Vertex.cs ├── bin │ ├── Debug │ │ ├── SM64Paint.application │ │ ├── SM64Paint.exe │ │ ├── SM64Paint.exe.config │ │ ├── SM64Paint.exe.manifest │ │ ├── SM64Paint.pdb │ │ └── app.publish │ │ │ └── SM64Paint.exe │ └── Release │ │ ├── SM64Paint.application │ │ ├── SM64Paint.exe │ │ ├── SM64Paint.exe.config │ │ ├── SM64Paint.exe.manifest │ │ ├── SM64Paint.pdb │ │ └── app.publish │ │ └── SM64Paint.exe ├── obj │ ├── Debug │ │ ├── Common.cs │ │ ├── Costura │ │ │ ├── 0C4115DD08304C27CD4E6792C4F20D4F0E1FFFE0.costura.system.numerics.vectors.dll.compressed │ │ │ ├── 192149FD30313696A1D3FAAC7D7936D84A2BA7AB.costura.system.runtime.compilerservices.unsafe.dll.compressed │ │ │ ├── 4CD11CA07D528C333A5F83471723E64FAEB06831.costura.opentk.glcontrol.dll.compressed │ │ │ └── B3399973D67578B486FCCF28DF86F23721339C39.costura.opentk.dll.compressed │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── ILTemplate.cs │ │ ├── SM64Paint.MainForm.resources │ │ ├── SM64Paint.Properties.Resources.resources │ │ ├── SM64Paint.TrustInfo.xml │ │ ├── SM64Paint.application │ │ ├── SM64Paint.csproj.CoreCompileInputs.cache │ │ ├── SM64Paint.csproj.FileListAbsolute.txt │ │ ├── SM64Paint.csproj.GenerateResource.Cache │ │ ├── SM64Paint.csprojResolveAssemblyReference.cache │ │ ├── SM64Paint.exe │ │ ├── SM64Paint.exe.manifest │ │ ├── SM64Paint.exe.tmp │ │ ├── SM64Paint.pdb │ │ ├── SM64Paint.pdb.tmp │ │ ├── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── Release │ │ ├── Common.cs │ │ ├── Costura │ │ ├── 0C4115DD08304C27CD4E6792C4F20D4F0E1FFFE0.costura.system.numerics.vectors.dll.compressed │ │ ├── 192149FD30313696A1D3FAAC7D7936D84A2BA7AB.costura.system.runtime.compilerservices.unsafe.dll.compressed │ │ ├── 4CD11CA07D528C333A5F83471723E64FAEB06831.costura.opentk.glcontrol.dll.compressed │ │ └── B3399973D67578B486FCCF28DF86F23721339C39.costura.opentk.dll.compressed │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── ILTemplate.cs │ │ ├── SM64Paint.MainForm.resources │ │ ├── SM64Paint.Properties.Resources.resources │ │ ├── SM64Paint.TrustInfo.xml │ │ ├── SM64Paint.application │ │ ├── SM64Paint.csproj.CoreCompileInputs.cache │ │ ├── SM64Paint.csproj.FileListAbsolute.txt │ │ ├── SM64Paint.csproj.GenerateResource.Cache │ │ ├── SM64Paint.csprojResolveAssemblyReference.cache │ │ ├── SM64Paint.exe │ │ ├── SM64Paint.exe.manifest │ │ ├── SM64Paint.exe.tmp │ │ ├── SM64Paint.pdb │ │ ├── SM64Paint.pdb.tmp │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── packages ├── Costura.Fody.1.6.2 │ ├── Costura.Fody.1.6.2.nupkg │ ├── Costura.Fody.dll │ ├── Costura.Fody.pdb │ ├── Costura.Tasks.dll │ ├── Costura.Tasks.pdb │ ├── build │ │ ├── dotnet │ │ │ └── Costura.Fody.targets │ │ └── portable-net+sl+win+wpa+wp │ │ │ └── Costura.Fody.targets │ ├── lib │ │ ├── dotnet │ │ │ ├── Costura.dll │ │ │ └── Costura.pdb │ │ └── portable-net+sl+win+wpa+wp │ │ │ ├── Costura.dll │ │ │ └── Costura.pdb │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 ├── Fody.2.0.0 │ ├── Content │ │ └── FodyWeavers.xml │ ├── Fody.2.0.0.nupkg │ ├── Fody.dll │ ├── Fody.pdb │ ├── FodyCommon.dll │ ├── FodyCommon.pdb │ ├── FodyIsolated.dll │ ├── FodyIsolated.pdb │ ├── Mono.Cecil.Mdb.dll │ ├── Mono.Cecil.Pdb.dll │ ├── Mono.Cecil.Rocks.dll │ ├── Mono.Cecil.dll │ ├── Tools │ │ └── install.ps1 │ └── build │ │ ├── dotnet │ │ └── Fody.targets │ │ ├── netstandard1.4 │ │ └── Fody.targets │ │ └── portable-net+sl+win+wpa+wp │ │ └── Fody.targets ├── Newtonsoft.Json.10.0.3 │ ├── LICENSE.md │ ├── Newtonsoft.Json.10.0.3.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45+win8+wp8+wpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── tools │ │ └── install.ps1 ├── OpenGL.Net.WinForms.0.6.1 │ ├── OpenGL.Net.WinForms.0.6.1.nupkg │ └── lib │ │ ├── net35 │ │ ├── OpenGL.Net.WinForms.dll │ │ ├── OpenGL.Net.WinForms.pdb │ │ └── OpenGL.Net.WinForms.xml │ │ └── net461 │ │ ├── OpenGL.Net.WinForms.dll │ │ ├── OpenGL.Net.WinForms.pdb │ │ └── OpenGL.Net.WinForms.xml ├── OpenTK.3.0.0-pre │ ├── OpenTK.3.0.0-pre.nupkg │ ├── content │ │ └── OpenTK.dll.config │ └── lib │ │ └── net20 │ │ ├── OpenTK.dll │ │ └── OpenTK.xml ├── OpenTK.GLControl.3.0.0-pre │ ├── OpenTK.GLControl.3.0.0-pre.nupkg │ └── lib │ │ └── net20 │ │ ├── OpenTK.GLControl.dll │ │ └── OpenTK.GLControl.xml ├── System.Numerics.Vectors.4.3.0 │ ├── System.Numerics.Vectors.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ ├── lib │ │ ├── MonoAndroid10 │ │ │ └── _._ │ │ ├── MonoTouch10 │ │ │ └── _._ │ │ ├── net46 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── netstandard1.0 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── portable-net45+win8+wp8+wpa81 │ │ │ ├── System.Numerics.Vectors.dll │ │ │ └── System.Numerics.Vectors.xml │ │ ├── xamarinios10 │ │ │ └── _._ │ │ ├── xamarinmac20 │ │ │ └── _._ │ │ ├── xamarintvos10 │ │ │ └── _._ │ │ └── xamarinwatchos10 │ │ │ └── _._ │ └── ref │ │ ├── MonoAndroid10 │ │ └── _._ │ │ ├── MonoTouch10 │ │ └── _._ │ │ ├── net46 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ │ ├── netstandard1.0 │ │ ├── System.Numerics.Vectors.dll │ │ └── System.Numerics.Vectors.xml │ │ ├── xamarinios10 │ │ └── _._ │ │ ├── xamarinmac20 │ │ └── _._ │ │ ├── xamarintvos10 │ │ └── _._ │ │ └── xamarinwatchos10 │ │ └── _._ └── System.Runtime.CompilerServices.Unsafe.4.3.0 │ ├── System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg │ ├── ThirdPartyNotices.txt │ ├── dotnet_library_license.txt │ └── lib │ └── netstandard1.0 │ ├── System.Runtime.CompilerServices.Unsafe.dll │ └── System.Runtime.CompilerServices.Unsafe.xml └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/LICENSE -------------------------------------------------------------------------------- /SM64Paint/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/App.config -------------------------------------------------------------------------------- /SM64Paint/F3DParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/F3DParser.cs -------------------------------------------------------------------------------- /SM64Paint/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/FodyWeavers.xml -------------------------------------------------------------------------------- /SM64Paint/GPL_License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/GPL_License.txt -------------------------------------------------------------------------------- /SM64Paint/GeoLayouts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/GeoLayouts.cs -------------------------------------------------------------------------------- /SM64Paint/LevelScriptParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/LevelScriptParser.cs -------------------------------------------------------------------------------- /SM64Paint/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/MainForm.Designer.cs -------------------------------------------------------------------------------- /SM64Paint/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/MainForm.cs -------------------------------------------------------------------------------- /SM64Paint/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/MainForm.resx -------------------------------------------------------------------------------- /SM64Paint/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/OpenTK.dll.config -------------------------------------------------------------------------------- /SM64Paint/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/Program.cs -------------------------------------------------------------------------------- /SM64Paint/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SM64Paint/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SM64Paint/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/Properties/Resources.resx -------------------------------------------------------------------------------- /SM64Paint/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SM64Paint/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/Properties/Settings.settings -------------------------------------------------------------------------------- /SM64Paint/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/Properties/app.manifest -------------------------------------------------------------------------------- /SM64Paint/ROM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/ROM.cs -------------------------------------------------------------------------------- /SM64Paint/ROMManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/ROMManager.cs -------------------------------------------------------------------------------- /SM64Paint/Renderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/Renderer.cs -------------------------------------------------------------------------------- /SM64Paint/SM64Paint.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/SM64Paint.csproj -------------------------------------------------------------------------------- /SM64Paint/SM64Paint.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/SM64Paint.csproj.user -------------------------------------------------------------------------------- /SM64Paint/SM64Paint.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/SM64Paint.ico -------------------------------------------------------------------------------- /SM64Paint/Textures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/Textures.cs -------------------------------------------------------------------------------- /SM64Paint/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/Vertex.cs -------------------------------------------------------------------------------- /SM64Paint/bin/Debug/SM64Paint.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Debug/SM64Paint.application -------------------------------------------------------------------------------- /SM64Paint/bin/Debug/SM64Paint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Debug/SM64Paint.exe -------------------------------------------------------------------------------- /SM64Paint/bin/Debug/SM64Paint.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Debug/SM64Paint.exe.config -------------------------------------------------------------------------------- /SM64Paint/bin/Debug/SM64Paint.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Debug/SM64Paint.exe.manifest -------------------------------------------------------------------------------- /SM64Paint/bin/Debug/SM64Paint.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Debug/SM64Paint.pdb -------------------------------------------------------------------------------- /SM64Paint/bin/Debug/app.publish/SM64Paint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Debug/app.publish/SM64Paint.exe -------------------------------------------------------------------------------- /SM64Paint/bin/Release/SM64Paint.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Release/SM64Paint.application -------------------------------------------------------------------------------- /SM64Paint/bin/Release/SM64Paint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Release/SM64Paint.exe -------------------------------------------------------------------------------- /SM64Paint/bin/Release/SM64Paint.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Release/SM64Paint.exe.config -------------------------------------------------------------------------------- /SM64Paint/bin/Release/SM64Paint.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Release/SM64Paint.exe.manifest -------------------------------------------------------------------------------- /SM64Paint/bin/Release/SM64Paint.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Release/SM64Paint.pdb -------------------------------------------------------------------------------- /SM64Paint/bin/Release/app.publish/SM64Paint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/bin/Release/app.publish/SM64Paint.exe -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/Common.cs -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/Costura/0C4115DD08304C27CD4E6792C4F20D4F0E1FFFE0.costura.system.numerics.vectors.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/Costura/0C4115DD08304C27CD4E6792C4F20D4F0E1FFFE0.costura.system.numerics.vectors.dll.compressed -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/Costura/192149FD30313696A1D3FAAC7D7936D84A2BA7AB.costura.system.runtime.compilerservices.unsafe.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/Costura/192149FD30313696A1D3FAAC7D7936D84A2BA7AB.costura.system.runtime.compilerservices.unsafe.dll.compressed -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/Costura/4CD11CA07D528C333A5F83471723E64FAEB06831.costura.opentk.glcontrol.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/Costura/4CD11CA07D528C333A5F83471723E64FAEB06831.costura.opentk.glcontrol.dll.compressed -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/Costura/B3399973D67578B486FCCF28DF86F23721339C39.costura.opentk.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/Costura/B3399973D67578B486FCCF28DF86F23721339C39.costura.opentk.dll.compressed -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/ILTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/ILTemplate.cs -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.MainForm.resources -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.Properties.Resources.resources -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.TrustInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.TrustInfo.xml -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.application -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4e1574e5ce5983158164dc5d1924c68e66baf82a 2 | -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.exe -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.exe.manifest -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.exe.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.exe.tmp -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.pdb -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/SM64Paint.pdb.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/SM64Paint.pdb.tmp -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SM64Paint/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SM64Paint/obj/Release/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/Common.cs -------------------------------------------------------------------------------- /SM64Paint/obj/Release/Costura/0C4115DD08304C27CD4E6792C4F20D4F0E1FFFE0.costura.system.numerics.vectors.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/Costura/0C4115DD08304C27CD4E6792C4F20D4F0E1FFFE0.costura.system.numerics.vectors.dll.compressed -------------------------------------------------------------------------------- /SM64Paint/obj/Release/Costura/192149FD30313696A1D3FAAC7D7936D84A2BA7AB.costura.system.runtime.compilerservices.unsafe.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/Costura/192149FD30313696A1D3FAAC7D7936D84A2BA7AB.costura.system.runtime.compilerservices.unsafe.dll.compressed -------------------------------------------------------------------------------- /SM64Paint/obj/Release/Costura/4CD11CA07D528C333A5F83471723E64FAEB06831.costura.opentk.glcontrol.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/Costura/4CD11CA07D528C333A5F83471723E64FAEB06831.costura.opentk.glcontrol.dll.compressed -------------------------------------------------------------------------------- /SM64Paint/obj/Release/Costura/B3399973D67578B486FCCF28DF86F23721339C39.costura.opentk.dll.compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/Costura/B3399973D67578B486FCCF28DF86F23721339C39.costura.opentk.dll.compressed -------------------------------------------------------------------------------- /SM64Paint/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /SM64Paint/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /SM64Paint/obj/Release/ILTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/ILTemplate.cs -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.MainForm.resources -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.Properties.Resources.resources -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.TrustInfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.TrustInfo.xml -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.application: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.application -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4e1574e5ce5983158164dc5d1924c68e66baf82a 2 | -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.exe -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.exe.manifest -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.exe.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.exe.tmp -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.pdb -------------------------------------------------------------------------------- /SM64Paint/obj/Release/SM64Paint.pdb.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/SM64Paint.pdb.tmp -------------------------------------------------------------------------------- /SM64Paint/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /SM64Paint/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SM64Paint/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SM64Paint/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SM64Paint/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/SM64Paint/packages.config -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Fody.1.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/Costura.Fody.1.6.2.nupkg -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/Costura.Fody.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Fody.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/Costura.Fody.pdb -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/Costura.Tasks.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Tasks.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/Costura.Tasks.pdb -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/build/dotnet/Costura.Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/build/dotnet/Costura.Fody.targets -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/build/portable-net+sl+win+wpa+wp/Costura.Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/build/portable-net+sl+win+wpa+wp/Costura.Fody.targets -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/dotnet/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/lib/dotnet/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/dotnet/Costura.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/lib/dotnet/Costura.pdb -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.pdb -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/tools/install.ps1 -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Costura.Fody.1.6.2/tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Content/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/Content/FodyWeavers.xml -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Fody.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/Fody.2.0.0.nupkg -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Fody.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/Fody.pdb -------------------------------------------------------------------------------- /packages/Fody.2.0.0/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/FodyCommon.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/FodyCommon.pdb -------------------------------------------------------------------------------- /packages/Fody.2.0.0/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/FodyIsolated.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/FodyIsolated.pdb -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.2.0.0/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/Fody.2.0.0/build/dotnet/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/build/dotnet/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.2.0.0/build/netstandard1.4/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/build/netstandard1.4/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.2.0.0/build/portable-net+sl+win+wpa+wp/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Fody.2.0.0/build/portable-net+sl+win+wpa+wp/Fody.targets -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/Newtonsoft.Json.10.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/Newtonsoft.Json.10.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.10.0.3/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/Newtonsoft.Json.10.0.3/tools/install.ps1 -------------------------------------------------------------------------------- /packages/OpenGL.Net.WinForms.0.6.1/OpenGL.Net.WinForms.0.6.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenGL.Net.WinForms.0.6.1/OpenGL.Net.WinForms.0.6.1.nupkg -------------------------------------------------------------------------------- /packages/OpenGL.Net.WinForms.0.6.1/lib/net35/OpenGL.Net.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenGL.Net.WinForms.0.6.1/lib/net35/OpenGL.Net.WinForms.dll -------------------------------------------------------------------------------- /packages/OpenGL.Net.WinForms.0.6.1/lib/net35/OpenGL.Net.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenGL.Net.WinForms.0.6.1/lib/net35/OpenGL.Net.WinForms.pdb -------------------------------------------------------------------------------- /packages/OpenGL.Net.WinForms.0.6.1/lib/net35/OpenGL.Net.WinForms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenGL.Net.WinForms.0.6.1/lib/net35/OpenGL.Net.WinForms.xml -------------------------------------------------------------------------------- /packages/OpenGL.Net.WinForms.0.6.1/lib/net461/OpenGL.Net.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenGL.Net.WinForms.0.6.1/lib/net461/OpenGL.Net.WinForms.dll -------------------------------------------------------------------------------- /packages/OpenGL.Net.WinForms.0.6.1/lib/net461/OpenGL.Net.WinForms.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenGL.Net.WinForms.0.6.1/lib/net461/OpenGL.Net.WinForms.pdb -------------------------------------------------------------------------------- /packages/OpenGL.Net.WinForms.0.6.1/lib/net461/OpenGL.Net.WinForms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenGL.Net.WinForms.0.6.1/lib/net461/OpenGL.Net.WinForms.xml -------------------------------------------------------------------------------- /packages/OpenTK.3.0.0-pre/OpenTK.3.0.0-pre.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenTK.3.0.0-pre/OpenTK.3.0.0-pre.nupkg -------------------------------------------------------------------------------- /packages/OpenTK.3.0.0-pre/content/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenTK.3.0.0-pre/content/OpenTK.dll.config -------------------------------------------------------------------------------- /packages/OpenTK.3.0.0-pre/lib/net20/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenTK.3.0.0-pre/lib/net20/OpenTK.dll -------------------------------------------------------------------------------- /packages/OpenTK.3.0.0-pre/lib/net20/OpenTK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenTK.3.0.0-pre/lib/net20/OpenTK.xml -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.0.0-pre/OpenTK.GLControl.3.0.0-pre.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenTK.GLControl.3.0.0-pre/OpenTK.GLControl.3.0.0-pre.nupkg -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.0.0-pre/lib/net20/OpenTK.GLControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenTK.GLControl.3.0.0-pre/lib/net20/OpenTK.GLControl.dll -------------------------------------------------------------------------------- /packages/OpenTK.GLControl.3.0.0-pre/lib/net20/OpenTK.GLControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/OpenTK.GLControl.3.0.0-pre/lib/net20/OpenTK.GLControl.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/System.Numerics.Vectors.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/System.Numerics.Vectors.4.3.0.nupkg -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/net46/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/net46/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/netstandard1.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/netstandard1.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/lib/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/MonoAndroid10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/MonoTouch10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/net46/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/ref/net46/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/net46/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/ref/net46/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/netstandard1.0/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/ref/netstandard1.0/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/netstandard1.0/System.Numerics.Vectors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Numerics.Vectors.4.3.0/ref/netstandard1.0/System.Numerics.Vectors.xml -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/xamarinios10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/xamarinmac20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/xamarintvos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Numerics.Vectors.4.3.0/ref/xamarinwatchos10/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.3.0/System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.3.0/System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.3.0/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.3.0/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.3.0/dotnet_library_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.3.0/dotnet_library_license.txt -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.3.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.3.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /packages/System.Runtime.CompilerServices.Unsafe.4.3.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/packages/System.Runtime.CompilerServices.Unsafe.4.3.0/lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trenavix/SM64Paint/HEAD/readme.md --------------------------------------------------------------------------------