├── .gitignore ├── LICENSE ├── README.md ├── bin ├── Animator.exe ├── Buildchar.exe ├── CharSplit.exe ├── Framer.exe ├── NeoTools.dll └── parseBanks.exe ├── docNG ├── LibraryReference.pdf └── auto4_tile.png ├── inc ├── configNG.h ├── libNG.h ├── libNG_cMath.h ├── libNG_pict.h ├── libNG_scrl.h ├── libNG_spr.h └── neogeo.h ├── makefile.neo ├── makelib.neo ├── neogeo.ld ├── sample ├── NGsample │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ ├── settings.json │ │ └── tasks.json │ ├── chardata.xml │ ├── fixData.xml │ ├── gfx │ │ ├── 2Kportraits.png │ │ ├── SNK_logoStrip.png │ │ ├── bmary.png │ │ ├── bmary_spr │ │ │ ├── (0000) bmary_spr_0000.png │ │ │ ├── (0001) bmary_spr_0001.png │ │ │ ├── (0002) bmary_spr_0002.png │ │ │ ├── (0003) bmary_spr_0003.png │ │ │ ├── (0004) bmary_spr_0004.png │ │ │ ├── (0005) bmary_spr_0005.png │ │ │ ├── (0006) bmary_spr_0006.png │ │ │ ├── (0007) bmary_spr_0007.png │ │ │ ├── (0008) bmary_spr_0008.png │ │ │ ├── (0009) bmary_spr_0009.png │ │ │ ├── (0010) bmary_spr_000a.png │ │ │ ├── (0011) bmary_spr_000b.png │ │ │ ├── (0012) bmary_spr_000c.png │ │ │ ├── (0013) bmary_spr_000d.png │ │ │ ├── (0014) bmary_spr_000e.png │ │ │ ├── (0015) bmary_spr_000f.png │ │ │ ├── (0016) bmary_spr_0010.png │ │ │ ├── (0017) bmary_spr_0011.png │ │ │ ├── (0018) bmary_spr_0012.png │ │ │ ├── (0019) bmary_spr_0013.png │ │ │ ├── (0020) bmary_spr_0014.png │ │ │ ├── (0021) bmary_spr_0015.png │ │ │ ├── (0022) bmary_spr_0016.png │ │ │ ├── (0023) bmary_spr_0017.png │ │ │ ├── (0024) bmary_spr_0018.png │ │ │ ├── animdata.xml │ │ │ ├── bmary_spr.h │ │ │ └── bmary_spr_anims.s │ │ ├── colorbars.png │ │ ├── debugtags.png │ │ ├── desert.png │ │ ├── ffbg_a.png │ │ ├── ffbg_b0.png │ │ ├── ffbg_b1.png │ │ ├── ffbg_b2.png │ │ ├── ffbg_b3.png │ │ ├── ffbg_c.png │ │ ├── fix │ │ │ ├── bars.png │ │ │ ├── font0.png │ │ │ ├── logo95.png │ │ │ ├── logo96.png │ │ │ ├── logo97.png │ │ │ ├── logo98.png │ │ │ └── systemFont.bin │ │ ├── pointer.png │ │ ├── portraits_spr │ │ │ ├── (0000) portraits_spr_0000.png │ │ │ ├── (0001) portraits_spr_0001.png │ │ │ ├── animdata.xml │ │ │ ├── portraits_spr.h │ │ │ └── portraits_spr_anims.s │ │ ├── streamTest.png │ │ ├── terry_portrait.png │ │ ├── terry_portrait_.png │ │ ├── tf4layers.png │ │ ├── topleft.png │ │ └── wohd.png │ ├── out │ │ ├── .gitkeep │ │ ├── char.bin │ │ └── fix.bin │ └── src │ │ ├── boot │ │ └── neogeo.s │ │ ├── data │ │ ├── charInclude.h │ │ ├── charMaps.s │ │ ├── charPals.s │ │ ├── fixData.h │ │ └── fixPals.s │ │ ├── demoClrStrm.c │ │ ├── demoFix.c │ │ ├── demoPicture.c │ │ ├── demoRaster.c │ │ ├── demoScroll.c │ │ ├── demoSprites.c │ │ ├── demoTyper.c │ │ ├── externs.h │ │ ├── main.c │ │ └── messData.s └── NGtemplate │ ├── .vscode │ ├── c_cpp_properties.json │ └── tasks.json │ ├── fixData.xml │ ├── gfx │ └── fix │ │ ├── font0.png │ │ └── systemFont.bin │ ├── out │ ├── .gitkeep │ └── fix.bin │ └── src │ ├── boot │ └── neogeo.s │ ├── data │ ├── fixData.h │ └── fixPals.s │ └── main.c ├── srcNG ├── ASasm.s ├── PICTasm.s ├── SCRLasm.s ├── boot │ ├── neogeo.s │ └── neogeo_boot.s ├── colorMath.s ├── colorStream.s ├── defines.inc ├── libNG.c ├── libNG_a.s ├── sprPool.s └── strings.s └── toolsNG └── toolsNG ├── .gitignore ├── Animator ├── Animator.Designer.cs ├── Animator.cs ├── Animator.csproj ├── Animator.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── brick_go.png │ ├── disk.png │ └── shape_square_add.png ├── app.config ├── cyberlip.ico ├── textRequest.Designer.cs ├── textRequest.cs └── textRequest.resx ├── Buildchar ├── App.config ├── Buildchar.csproj ├── Fix.cs ├── Pals.cs ├── Pattern.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Sprites.cs └── Tile.cs ├── CharSplit ├── CharSplit.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── Framer ├── Framer.Designer.cs ├── Framer.cs ├── Framer.csproj ├── Framer.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── disk.png │ ├── magifier_zoom_out.png │ └── magnifier_zoom_in.png ├── ToolGrid.Designer.cs ├── ToolGrid.cs ├── ToolGrid.resx ├── app.config ├── cyber2.ico ├── frameTool.Designer.cs ├── frameTool.cs ├── frameTool.resx └── sprData.cs ├── NeoTools ├── ADPCM-A.cs ├── ADPCM-B.cs ├── ColorTool.cs ├── FileOps.cs ├── NGtile.cs ├── NeoTools.csproj ├── Palette.cs ├── PaletteList.cs ├── Properties │ └── AssemblyInfo.cs ├── Tile.cs ├── TileData.cs ├── TileList.cs ├── TileMap.cs ├── fixTile.cs └── fixTileList.cs ├── parseBanks ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── parseBanks.csproj └── toolsNG.sln /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/README.md -------------------------------------------------------------------------------- /bin/Animator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/bin/Animator.exe -------------------------------------------------------------------------------- /bin/Buildchar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/bin/Buildchar.exe -------------------------------------------------------------------------------- /bin/CharSplit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/bin/CharSplit.exe -------------------------------------------------------------------------------- /bin/Framer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/bin/Framer.exe -------------------------------------------------------------------------------- /bin/NeoTools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/bin/NeoTools.dll -------------------------------------------------------------------------------- /bin/parseBanks.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/bin/parseBanks.exe -------------------------------------------------------------------------------- /docNG/LibraryReference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/docNG/LibraryReference.pdf -------------------------------------------------------------------------------- /docNG/auto4_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/docNG/auto4_tile.png -------------------------------------------------------------------------------- /inc/configNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/inc/configNG.h -------------------------------------------------------------------------------- /inc/libNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/inc/libNG.h -------------------------------------------------------------------------------- /inc/libNG_cMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/inc/libNG_cMath.h -------------------------------------------------------------------------------- /inc/libNG_pict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/inc/libNG_pict.h -------------------------------------------------------------------------------- /inc/libNG_scrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/inc/libNG_scrl.h -------------------------------------------------------------------------------- /inc/libNG_spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/inc/libNG_spr.h -------------------------------------------------------------------------------- /inc/neogeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/inc/neogeo.h -------------------------------------------------------------------------------- /makefile.neo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/makefile.neo -------------------------------------------------------------------------------- /makelib.neo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/makelib.neo -------------------------------------------------------------------------------- /neogeo.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/neogeo.ld -------------------------------------------------------------------------------- /sample/NGsample/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /sample/NGsample/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/.vscode/settings.json -------------------------------------------------------------------------------- /sample/NGsample/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/.vscode/tasks.json -------------------------------------------------------------------------------- /sample/NGsample/chardata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/chardata.xml -------------------------------------------------------------------------------- /sample/NGsample/fixData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/fixData.xml -------------------------------------------------------------------------------- /sample/NGsample/gfx/2Kportraits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/2Kportraits.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/SNK_logoStrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/SNK_logoStrip.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0000) bmary_spr_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0000) bmary_spr_0000.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0001) bmary_spr_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0001) bmary_spr_0001.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0002) bmary_spr_0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0002) bmary_spr_0002.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0003) bmary_spr_0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0003) bmary_spr_0003.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0004) bmary_spr_0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0004) bmary_spr_0004.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0005) bmary_spr_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0005) bmary_spr_0005.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0006) bmary_spr_0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0006) bmary_spr_0006.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0007) bmary_spr_0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0007) bmary_spr_0007.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0008) bmary_spr_0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0008) bmary_spr_0008.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0009) bmary_spr_0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0009) bmary_spr_0009.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0010) bmary_spr_000a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0010) bmary_spr_000a.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0011) bmary_spr_000b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0011) bmary_spr_000b.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0012) bmary_spr_000c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0012) bmary_spr_000c.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0013) bmary_spr_000d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0013) bmary_spr_000d.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0014) bmary_spr_000e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0014) bmary_spr_000e.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0015) bmary_spr_000f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0015) bmary_spr_000f.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0016) bmary_spr_0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0016) bmary_spr_0010.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0017) bmary_spr_0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0017) bmary_spr_0011.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0018) bmary_spr_0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0018) bmary_spr_0012.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0019) bmary_spr_0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0019) bmary_spr_0013.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0020) bmary_spr_0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0020) bmary_spr_0014.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0021) bmary_spr_0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0021) bmary_spr_0015.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0022) bmary_spr_0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0022) bmary_spr_0016.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0023) bmary_spr_0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0023) bmary_spr_0017.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/(0024) bmary_spr_0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/(0024) bmary_spr_0018.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/animdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/animdata.xml -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/bmary_spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/bmary_spr.h -------------------------------------------------------------------------------- /sample/NGsample/gfx/bmary_spr/bmary_spr_anims.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/bmary_spr/bmary_spr_anims.s -------------------------------------------------------------------------------- /sample/NGsample/gfx/colorbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/colorbars.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/debugtags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/debugtags.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/desert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/desert.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/ffbg_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/ffbg_a.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/ffbg_b0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/ffbg_b0.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/ffbg_b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/ffbg_b1.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/ffbg_b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/ffbg_b2.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/ffbg_b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/ffbg_b3.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/ffbg_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/ffbg_c.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/fix/bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/fix/bars.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/fix/font0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/fix/font0.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/fix/logo95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/fix/logo95.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/fix/logo96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/fix/logo96.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/fix/logo97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/fix/logo97.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/fix/logo98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/fix/logo98.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/fix/systemFont.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/fix/systemFont.bin -------------------------------------------------------------------------------- /sample/NGsample/gfx/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/pointer.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/portraits_spr/(0000) portraits_spr_0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/portraits_spr/(0000) portraits_spr_0000.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/portraits_spr/(0001) portraits_spr_0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/portraits_spr/(0001) portraits_spr_0001.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/portraits_spr/animdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/portraits_spr/animdata.xml -------------------------------------------------------------------------------- /sample/NGsample/gfx/portraits_spr/portraits_spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/portraits_spr/portraits_spr.h -------------------------------------------------------------------------------- /sample/NGsample/gfx/portraits_spr/portraits_spr_anims.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/portraits_spr/portraits_spr_anims.s -------------------------------------------------------------------------------- /sample/NGsample/gfx/streamTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/streamTest.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/terry_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/terry_portrait.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/terry_portrait_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/terry_portrait_.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/tf4layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/tf4layers.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/topleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/topleft.png -------------------------------------------------------------------------------- /sample/NGsample/gfx/wohd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/gfx/wohd.png -------------------------------------------------------------------------------- /sample/NGsample/out/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/NGsample/out/char.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/out/char.bin -------------------------------------------------------------------------------- /sample/NGsample/out/fix.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/out/fix.bin -------------------------------------------------------------------------------- /sample/NGsample/src/boot/neogeo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/boot/neogeo.s -------------------------------------------------------------------------------- /sample/NGsample/src/data/charInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/data/charInclude.h -------------------------------------------------------------------------------- /sample/NGsample/src/data/charMaps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/data/charMaps.s -------------------------------------------------------------------------------- /sample/NGsample/src/data/charPals.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/data/charPals.s -------------------------------------------------------------------------------- /sample/NGsample/src/data/fixData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/data/fixData.h -------------------------------------------------------------------------------- /sample/NGsample/src/data/fixPals.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/data/fixPals.s -------------------------------------------------------------------------------- /sample/NGsample/src/demoClrStrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/demoClrStrm.c -------------------------------------------------------------------------------- /sample/NGsample/src/demoFix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/demoFix.c -------------------------------------------------------------------------------- /sample/NGsample/src/demoPicture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/demoPicture.c -------------------------------------------------------------------------------- /sample/NGsample/src/demoRaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/demoRaster.c -------------------------------------------------------------------------------- /sample/NGsample/src/demoScroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/demoScroll.c -------------------------------------------------------------------------------- /sample/NGsample/src/demoSprites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/demoSprites.c -------------------------------------------------------------------------------- /sample/NGsample/src/demoTyper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/demoTyper.c -------------------------------------------------------------------------------- /sample/NGsample/src/externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/externs.h -------------------------------------------------------------------------------- /sample/NGsample/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/main.c -------------------------------------------------------------------------------- /sample/NGsample/src/messData.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGsample/src/messData.s -------------------------------------------------------------------------------- /sample/NGtemplate/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGtemplate/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /sample/NGtemplate/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGtemplate/.vscode/tasks.json -------------------------------------------------------------------------------- /sample/NGtemplate/fixData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGtemplate/fixData.xml -------------------------------------------------------------------------------- /sample/NGtemplate/gfx/fix/font0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGtemplate/gfx/fix/font0.png -------------------------------------------------------------------------------- /sample/NGtemplate/gfx/fix/systemFont.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGtemplate/gfx/fix/systemFont.bin -------------------------------------------------------------------------------- /sample/NGtemplate/out/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sample/NGtemplate/out/fix.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGtemplate/out/fix.bin -------------------------------------------------------------------------------- /sample/NGtemplate/src/boot/neogeo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGtemplate/src/boot/neogeo.s -------------------------------------------------------------------------------- /sample/NGtemplate/src/data/fixData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGtemplate/src/data/fixData.h -------------------------------------------------------------------------------- /sample/NGtemplate/src/data/fixPals.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGtemplate/src/data/fixPals.s -------------------------------------------------------------------------------- /sample/NGtemplate/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/sample/NGtemplate/src/main.c -------------------------------------------------------------------------------- /srcNG/ASasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/ASasm.s -------------------------------------------------------------------------------- /srcNG/PICTasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/PICTasm.s -------------------------------------------------------------------------------- /srcNG/SCRLasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/SCRLasm.s -------------------------------------------------------------------------------- /srcNG/boot/neogeo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/boot/neogeo.s -------------------------------------------------------------------------------- /srcNG/boot/neogeo_boot.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/boot/neogeo_boot.s -------------------------------------------------------------------------------- /srcNG/colorMath.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/colorMath.s -------------------------------------------------------------------------------- /srcNG/colorStream.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/colorStream.s -------------------------------------------------------------------------------- /srcNG/defines.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/defines.inc -------------------------------------------------------------------------------- /srcNG/libNG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/libNG.c -------------------------------------------------------------------------------- /srcNG/libNG_a.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/libNG_a.s -------------------------------------------------------------------------------- /srcNG/sprPool.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/sprPool.s -------------------------------------------------------------------------------- /srcNG/strings.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/srcNG/strings.s -------------------------------------------------------------------------------- /toolsNG/toolsNG/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/.gitignore -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Animator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Animator.Designer.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Animator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Animator.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Animator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Animator.csproj -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Animator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Animator.resx -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Program.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Properties/Resources.resx -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Properties/Settings.settings -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Resources/brick_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Resources/brick_go.png -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Resources/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Resources/disk.png -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/Resources/shape_square_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/Resources/shape_square_add.png -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/app.config -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/cyberlip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/cyberlip.ico -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/textRequest.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/textRequest.Designer.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/textRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/textRequest.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Animator/textRequest.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Animator/textRequest.resx -------------------------------------------------------------------------------- /toolsNG/toolsNG/Buildchar/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Buildchar/App.config -------------------------------------------------------------------------------- /toolsNG/toolsNG/Buildchar/Buildchar.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Buildchar/Buildchar.csproj -------------------------------------------------------------------------------- /toolsNG/toolsNG/Buildchar/Fix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Buildchar/Fix.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Buildchar/Pals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Buildchar/Pals.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Buildchar/Pattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Buildchar/Pattern.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Buildchar/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Buildchar/Program.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Buildchar/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Buildchar/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Buildchar/Sprites.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Buildchar/Sprites.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Buildchar/Tile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Buildchar/Tile.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/CharSplit/CharSplit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/CharSplit/CharSplit.csproj -------------------------------------------------------------------------------- /toolsNG/toolsNG/CharSplit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/CharSplit/Program.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/CharSplit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/CharSplit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/CharSplit/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/CharSplit/app.config -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Framer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Framer.Designer.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Framer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Framer.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Framer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Framer.csproj -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Framer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Framer.resx -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Program.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Properties/Resources.resx -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Properties/Settings.settings -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Resources/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Resources/disk.png -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Resources/magifier_zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Resources/magifier_zoom_out.png -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/Resources/magnifier_zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/Resources/magnifier_zoom_in.png -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/ToolGrid.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/ToolGrid.Designer.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/ToolGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/ToolGrid.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/ToolGrid.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/ToolGrid.resx -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/app.config -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/cyber2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/cyber2.ico -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/frameTool.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/frameTool.Designer.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/frameTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/frameTool.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/frameTool.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/frameTool.resx -------------------------------------------------------------------------------- /toolsNG/toolsNG/Framer/sprData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/Framer/sprData.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/ADPCM-A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/ADPCM-A.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/ADPCM-B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/ADPCM-B.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/ColorTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/ColorTool.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/FileOps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/FileOps.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/NGtile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/NGtile.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/NeoTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/NeoTools.csproj -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/Palette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/Palette.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/PaletteList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/PaletteList.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/Tile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/Tile.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/TileData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/TileData.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/TileList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/TileList.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/TileMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/TileMap.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/fixTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/fixTile.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/NeoTools/fixTileList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/NeoTools/fixTileList.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/parseBanks/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/parseBanks/App.config -------------------------------------------------------------------------------- /toolsNG/toolsNG/parseBanks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/parseBanks/Program.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/parseBanks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/parseBanks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /toolsNG/toolsNG/parseBanks/parseBanks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/parseBanks/parseBanks.csproj -------------------------------------------------------------------------------- /toolsNG/toolsNG/toolsNG.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHpman/libNG/HEAD/toolsNG/toolsNG/toolsNG.sln --------------------------------------------------------------------------------