Added png2bin tool to make it easier to create maps and sprites
authorLukas Krickl <lukas@krickl.dev>
Wed, 22 Mar 2023 05:26:43 +0000 (06:26 +0100)
committerLukas Krickl <lukas@krickl.dev>
Wed, 22 Mar 2023 05:26:43 +0000 (06:26 +0100)
commit5fbc22efff623cbdac9ebcec5563de9f3aa0734a
tree2e4a3f88e067c261ec34c66c06828d3afc46e080
parentb55d40bf60dfd9628147ff27ce528e5e68116cf2
Added png2bin tool to make it easier to create maps and sprites
13 files changed:
.gitignore
main.asm
tools/png2bin/example.png [new file with mode: 0644]
tools/png2bin/example2.png [new file with mode: 0644]
tools/png2bin/makefile [new file with mode: 0644]
tools/png2bin/readme.md [new file with mode: 0644]
tools/png2bin/src/colour.cpp [new file with mode: 0644]
tools/png2bin/src/imageconverter.cpp [new file with mode: 0644]
tools/png2bin/src/include/colour.h [new file with mode: 0644]
tools/png2bin/src/include/imageconverter.h [new file with mode: 0644]
tools/png2bin/src/include/util.h [new file with mode: 0644]
tools/png2bin/src/main.cpp [new file with mode: 0644]
tools/png2bin/src/util.cpp [new file with mode: 0644]