├── .gitattributes ├── .gitignore ├── .vs └── NESIFIER │ └── v16 │ └── .suo ├── App.config ├── Compress.cs ├── DZ4 ├── DZ4.asm ├── DZ4.exe └── Readme2.txt ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Images ├── 1color.png ├── 2color.png ├── 3color.png ├── 4color.png ├── Anime.png ├── Cute_dog128_128.png ├── Cute_dog256_240.png ├── Gradient256.png ├── Lights.png ├── Piano256.png ├── Simcity.png ├── Smooth (FBX).pal ├── Smooth FBX.txt ├── Transparent.png ├── Tulips.jpg ├── apple2.jpg ├── blues.jpg ├── linear_gradient.png ├── output_test.bmp ├── parrot.jpg ├── rainbow.jpg ├── smoothfbx.png ├── smoothfbx2.png └── test2.png ├── License.txt ├── NESIFIER.csproj ├── NESIFIER.sln ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Readme.txt ├── Resource1.Designer.cs ├── Resource1.resx ├── bin └── Release │ ├── NESIFIER.exe │ ├── NESIFIER.exe.config │ └── NESIFIER.pdb └── obj └── Release ├── .NETFramework,Version=v4.5.2.AssemblyAttributes.cs ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── NESIFIER.Form1.resources ├── NESIFIER.Properties.Resources.resources ├── NESIFIER.Resource1.resources ├── NESIFIER.csproj.CoreCompileInputs.cache ├── NESIFIER.csproj.FileListAbsolute.txt ├── NESIFIER.csproj.GenerateResource.cache ├── NESIFIER.csprojAssemblyReference.cache ├── NESIFIER.exe ├── NESIFIER.pdb └── TempPE └── Resource1.Designer.cs.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/NESIFIER/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/.vs/NESIFIER/v16/.suo -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/App.config -------------------------------------------------------------------------------- /Compress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Compress.cs -------------------------------------------------------------------------------- /DZ4/DZ4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/DZ4/DZ4.asm -------------------------------------------------------------------------------- /DZ4/DZ4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/DZ4/DZ4.exe -------------------------------------------------------------------------------- /DZ4/Readme2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/DZ4/Readme2.txt -------------------------------------------------------------------------------- /Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Form1.Designer.cs -------------------------------------------------------------------------------- /Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Form1.cs -------------------------------------------------------------------------------- /Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Form1.resx -------------------------------------------------------------------------------- /Images/1color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/1color.png -------------------------------------------------------------------------------- /Images/2color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/2color.png -------------------------------------------------------------------------------- /Images/3color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/3color.png -------------------------------------------------------------------------------- /Images/4color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/4color.png -------------------------------------------------------------------------------- /Images/Anime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/Anime.png -------------------------------------------------------------------------------- /Images/Cute_dog128_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/Cute_dog128_128.png -------------------------------------------------------------------------------- /Images/Cute_dog256_240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/Cute_dog256_240.png -------------------------------------------------------------------------------- /Images/Gradient256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/Gradient256.png -------------------------------------------------------------------------------- /Images/Lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/Lights.png -------------------------------------------------------------------------------- /Images/Piano256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/Piano256.png -------------------------------------------------------------------------------- /Images/Simcity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/Simcity.png -------------------------------------------------------------------------------- /Images/Smooth (FBX).pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/Smooth (FBX).pal -------------------------------------------------------------------------------- /Images/Smooth FBX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/Smooth FBX.txt -------------------------------------------------------------------------------- /Images/Transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/Transparent.png -------------------------------------------------------------------------------- /Images/Tulips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/Tulips.jpg -------------------------------------------------------------------------------- /Images/apple2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/apple2.jpg -------------------------------------------------------------------------------- /Images/blues.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/blues.jpg -------------------------------------------------------------------------------- /Images/linear_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/linear_gradient.png -------------------------------------------------------------------------------- /Images/output_test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/output_test.bmp -------------------------------------------------------------------------------- /Images/parrot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/parrot.jpg -------------------------------------------------------------------------------- /Images/rainbow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/rainbow.jpg -------------------------------------------------------------------------------- /Images/smoothfbx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/smoothfbx.png -------------------------------------------------------------------------------- /Images/smoothfbx2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/smoothfbx2.png -------------------------------------------------------------------------------- /Images/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Images/test2.png -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/License.txt -------------------------------------------------------------------------------- /NESIFIER.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/NESIFIER.csproj -------------------------------------------------------------------------------- /NESIFIER.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/NESIFIER.sln -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Readme.txt -------------------------------------------------------------------------------- /Resource1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Resource1.Designer.cs -------------------------------------------------------------------------------- /Resource1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/Resource1.resx -------------------------------------------------------------------------------- /bin/Release/NESIFIER.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/bin/Release/NESIFIER.exe -------------------------------------------------------------------------------- /bin/Release/NESIFIER.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/bin/Release/NESIFIER.exe.config -------------------------------------------------------------------------------- /bin/Release/NESIFIER.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/bin/Release/NESIFIER.pdb -------------------------------------------------------------------------------- /obj/Release/.NETFramework,Version=v4.5.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/.NETFramework,Version=v4.5.2.AssemblyAttributes.cs -------------------------------------------------------------------------------- /obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/Release/NESIFIER.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/NESIFIER.Form1.resources -------------------------------------------------------------------------------- /obj/Release/NESIFIER.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/NESIFIER.Properties.Resources.resources -------------------------------------------------------------------------------- /obj/Release/NESIFIER.Resource1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/NESIFIER.Resource1.resources -------------------------------------------------------------------------------- /obj/Release/NESIFIER.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5406ec26b1c3b4747b92c8076c278fd486be0769 2 | -------------------------------------------------------------------------------- /obj/Release/NESIFIER.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/NESIFIER.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Release/NESIFIER.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/NESIFIER.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /obj/Release/NESIFIER.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/NESIFIER.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Release/NESIFIER.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/NESIFIER.exe -------------------------------------------------------------------------------- /obj/Release/NESIFIER.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/NESIFIER.pdb -------------------------------------------------------------------------------- /obj/Release/TempPE/Resource1.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nesdoug/NESIFIER/HEAD/obj/Release/TempPE/Resource1.Designer.cs.dll --------------------------------------------------------------------------------