├── .gitattributes ├── .gitignore ├── Doxyfile ├── Makefile ├── changelog.rst ├── examples ├── .gitignore ├── 3dsprites │ ├── Makefile │ ├── alpha │ │ ├── Makefile │ │ ├── assets │ │ │ ├── blueball.png │ │ │ ├── convert.sh │ │ │ └── nature.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── nature.img │ │ │ │ ├── nature.map │ │ │ │ └── nature.pal │ │ │ └── sprite │ │ │ │ ├── blueball.img │ │ │ │ └── blueball.pal │ │ └── source │ │ │ └── main.c │ ├── animation │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bg3.png │ │ │ ├── convert.sh │ │ │ ├── nfl.png │ │ │ └── numbers.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── bg3.img │ │ │ │ ├── bg3.map │ │ │ │ ├── bg3.pal │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ │ └── sprite │ │ │ │ ├── numbers.img │ │ │ │ └── numbers.pal │ │ └── source │ │ │ └── main.c │ ├── basic │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bg3.png │ │ │ ├── blueball.png │ │ │ ├── convert.sh │ │ │ ├── nfl.png │ │ │ └── redcar.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── bg3.img │ │ │ │ ├── bg3.map │ │ │ │ ├── bg3.pal │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ │ └── sprite │ │ │ │ ├── blueball.img │ │ │ │ ├── blueball.pal │ │ │ │ ├── redcar.img │ │ │ │ └── redcar.pal │ │ └── source │ │ │ └── main.c │ ├── delete │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bg3.png │ │ │ ├── blueball.png │ │ │ ├── convert.sh │ │ │ └── redcar.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── bg3.img │ │ │ │ ├── bg3.map │ │ │ │ └── bg3.pal │ │ │ └── sprite │ │ │ │ ├── blueball.img │ │ │ │ ├── blueball.pal │ │ │ │ ├── redcar.img │ │ │ │ └── redcar.pal │ │ └── source │ │ │ └── main.c │ ├── rotscale │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bg3.png │ │ │ ├── blueball.png │ │ │ ├── convert.sh │ │ │ └── redcar.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── bg3.img │ │ │ │ ├── bg3.map │ │ │ │ └── bg3.pal │ │ │ └── sprite │ │ │ │ ├── blueball.img │ │ │ │ ├── blueball.pal │ │ │ │ ├── redcar.img │ │ │ │ └── redcar.pal │ │ └── source │ │ │ └── main.c │ ├── setlayer │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bg1.png │ │ │ ├── bg2.png │ │ │ ├── bg3.png │ │ │ ├── convert.sh │ │ │ ├── nfl.png │ │ │ └── numbers.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── bg1.img │ │ │ │ ├── bg1.map │ │ │ │ ├── bg1.pal │ │ │ │ ├── bg2.img │ │ │ │ ├── bg2.map │ │ │ │ ├── bg2.pal │ │ │ │ ├── bg3.img │ │ │ │ ├── bg3.map │ │ │ │ ├── bg3.pal │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ │ └── sprite │ │ │ │ ├── numbers.img │ │ │ │ └── numbers.pal │ │ └── source │ │ │ └── main.c │ ├── setpriority │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bg3.png │ │ │ ├── blueball.png │ │ │ ├── convert.sh │ │ │ └── redcar.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── bg3.img │ │ │ │ ├── bg3.map │ │ │ │ └── bg3.pal │ │ │ └── sprite │ │ │ │ ├── blueball.img │ │ │ │ ├── blueball.pal │ │ │ │ ├── redcar.img │ │ │ │ └── redcar.pal │ │ └── source │ │ │ └── main.c │ └── swappriority │ │ ├── Makefile │ │ ├── assets │ │ ├── bg3.png │ │ ├── blueball.png │ │ ├── convert.sh │ │ └── redcar.png │ │ ├── nitrofiles │ │ ├── bg │ │ │ ├── bg3.img │ │ │ ├── bg3.map │ │ │ └── bg3.pal │ │ └── sprite │ │ │ ├── blueball.img │ │ │ ├── blueball.pal │ │ │ ├── redcar.img │ │ │ └── redcar.pal │ │ └── source │ │ └── main.c ├── Makefile ├── Makefile.example ├── _original_assets │ ├── assorted_flowers.jpg │ ├── assorted_flowers.txt │ ├── cinque_terre.jpg │ ├── cinque_terre.txt │ ├── nebulae.jpg │ ├── nebulae.txt │ ├── sea.jpg │ └── sea.txt ├── collisions │ ├── Makefile │ ├── barrels │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ ├── pdemo_bg.png │ │ │ ├── pdemo_colmap.png │ │ │ └── whiteball.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── pdemo_bg.img │ │ │ │ ├── pdemo_bg.map │ │ │ │ └── pdemo_bg.pal │ │ │ ├── maps │ │ │ │ ├── pdemo_colmap.img │ │ │ │ └── pdemo_colmap.map │ │ │ └── sprite │ │ │ │ ├── whiteball.img │ │ │ │ └── whiteball.pal │ │ └── source │ │ │ └── main.c │ ├── pixels │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ ├── pointer.png │ │ │ ├── ppc_bg.png │ │ │ └── ppc_cmap.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── ppc_bg.img │ │ │ │ ├── ppc_bg.map │ │ │ │ └── ppc_bg.pal │ │ │ ├── maps │ │ │ │ ├── ppc_cmap.img │ │ │ │ └── ppc_cmap.map │ │ │ └── sprite │ │ │ │ ├── pointer.img │ │ │ │ └── pointer.pal │ │ └── source │ │ │ └── main.c │ └── tiles │ │ ├── Makefile │ │ ├── assets │ │ ├── cmap.png │ │ ├── colmap.png │ │ ├── convert.sh │ │ ├── default.png │ │ ├── layer3.png │ │ └── pointer.png │ │ ├── nitrofiles │ │ ├── bg │ │ │ ├── colmap.img │ │ │ ├── colmap.map │ │ │ ├── colmap.pal │ │ │ ├── layer3.img │ │ │ ├── layer3.map │ │ │ └── layer3.pal │ │ ├── fnt │ │ │ ├── default.img │ │ │ └── default.pal │ │ ├── maps │ │ │ └── cmap.map │ │ └── sprite │ │ │ ├── pointer.img │ │ │ └── pointer.pal │ │ └── source │ │ └── main.c ├── demo │ ├── Makefile │ ├── reveal │ │ ├── Makefile │ │ ├── assets │ │ │ ├── ball.png │ │ │ ├── convert.sh │ │ │ ├── img8b_1.png │ │ │ ├── img8b_2.png │ │ │ └── nfl.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── img8b_1.img │ │ │ │ ├── img8b_1.pal │ │ │ │ ├── img8b_2.img │ │ │ │ ├── img8b_2.pal │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ │ └── spr │ │ │ │ ├── ball.img │ │ │ │ └── ball.pal │ │ └── source │ │ │ └── main.c │ ├── water │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ ├── importante.txt │ │ │ ├── layer0.png │ │ │ ├── layer1.png │ │ │ ├── layer2.png │ │ │ ├── layer3.png │ │ │ └── nfl.png │ │ ├── nitrofiles │ │ │ └── bg │ │ │ │ ├── layer0.img │ │ │ │ ├── layer0.map │ │ │ │ ├── layer0.pal │ │ │ │ ├── layer1.img │ │ │ │ ├── layer1.map │ │ │ │ ├── layer1.pal │ │ │ │ ├── layer2.img │ │ │ │ ├── layer2.map │ │ │ │ ├── layer2.pal │ │ │ │ ├── layer3.img │ │ │ │ ├── layer3.map │ │ │ │ ├── layer3.pal │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ └── source │ │ │ └── main.c │ ├── wave │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ └── nfl.png │ │ ├── nitrofiles │ │ │ └── bg │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ └── source │ │ │ └── main.c │ ├── zoomx2 │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ └── img16_c.jpg │ │ ├── nitrofiles │ │ │ └── bmp │ │ │ │ └── img16_c.img │ │ └── source │ │ │ └── main.c │ └── zoomx3 │ │ ├── Makefile │ │ ├── assets │ │ ├── convert.sh │ │ └── img16_c.jpg │ │ ├── nitrofiles │ │ └── bmp │ │ │ └── img16_c.img │ │ └── source │ │ └── main.c ├── graphics │ ├── Makefile │ ├── alpha │ │ ├── Makefile │ │ ├── assets │ │ │ ├── ball.png │ │ │ ├── bg2.png │ │ │ ├── bg3.png │ │ │ ├── character.png │ │ │ ├── convert.sh │ │ │ └── nfl.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── bg2.img │ │ │ │ ├── bg2.map │ │ │ │ ├── bg2.pal │ │ │ │ ├── bg3.img │ │ │ │ ├── bg3.map │ │ │ │ ├── bg3.pal │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ │ └── sprite │ │ │ │ ├── ball.img │ │ │ │ ├── ball.pal │ │ │ │ ├── character.img │ │ │ │ └── character.pal │ │ └── source │ │ │ └── main.c │ ├── animatedbg │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ ├── frames.png │ │ │ ├── important.txt │ │ │ ├── instructions.txt │ │ │ ├── nfl.png │ │ │ └── water.png │ │ ├── nitrofiles │ │ │ └── bg │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ ├── nfl.pal │ │ │ │ ├── water.img │ │ │ │ └── water.pal │ │ └── source │ │ │ └── main.c │ ├── backbuffer │ │ ├── Makefile │ │ ├── nitrofiles │ │ │ └── delete.me │ │ └── source │ │ │ └── main.c │ ├── backbuffer2 │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bitmap16.png │ │ │ └── convert.sh │ │ ├── nitrofiles │ │ │ └── bmp │ │ │ │ └── bitmap16.img │ │ └── source │ │ │ └── main.c │ ├── backbuffer3 │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bitmap16.png │ │ │ ├── convert.sh │ │ │ ├── img16_a.png │ │ │ └── img16_b.png │ │ ├── nitrofiles │ │ │ └── bmp │ │ │ │ ├── bitmap16.img │ │ │ │ ├── img16_a.img │ │ │ │ └── img16_b.img │ │ └── source │ │ │ └── main.c │ ├── backbuffer4 │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bitmap16.png │ │ │ └── convert.sh │ │ ├── nitrofiles │ │ │ └── bmp │ │ │ │ └── bitmap16.img │ │ └── source │ │ │ └── main.c │ ├── bg │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bg0.png │ │ │ ├── bg1.png │ │ │ ├── bg2.png │ │ │ ├── bg3.png │ │ │ ├── convert.sh │ │ │ └── nfl.png │ │ ├── nitrofiles │ │ │ └── bg │ │ │ │ ├── bg0.img │ │ │ │ ├── bg0.map │ │ │ │ ├── bg0.pal │ │ │ │ ├── bg1.img │ │ │ │ ├── bg1.map │ │ │ │ ├── bg1.pal │ │ │ │ ├── bg2.img │ │ │ │ ├── bg2.map │ │ │ │ ├── bg2.pal │ │ │ │ ├── bg3.img │ │ │ │ ├── bg3.map │ │ │ │ ├── bg3.pal │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ └── source │ │ │ └── main.c │ ├── bg16bits │ │ ├── Makefile │ │ ├── nitrofiles │ │ │ └── delete.me │ │ └── source │ │ │ └── main.c │ ├── bg16bitsload │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bitmap16.jpg │ │ │ └── convert.sh │ │ ├── nitrofiles │ │ │ └── bmp │ │ │ │ └── bitmap16.img │ │ └── source │ │ │ └── main.c │ ├── bg8bits │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ ├── img8b_1.png │ │ │ ├── img8b_2.png │ │ │ └── img8b_3.png │ │ ├── nitrofiles │ │ │ └── bmp │ │ │ │ ├── img8b_1.img │ │ │ │ ├── img8b_1.pal │ │ │ │ ├── img8b_2.img │ │ │ │ ├── img8b_2.pal │ │ │ │ ├── img8b_3.img │ │ │ │ └── img8b_3.pal │ │ └── source │ │ │ └── main.c │ ├── bgaffine │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ ├── flag512.png │ │ │ ├── navygrid.png │ │ │ └── waves512.png │ │ ├── nitrofiles │ │ │ └── bg │ │ │ │ ├── flag512.img │ │ │ │ ├── flag512.map │ │ │ │ ├── flag512.pal │ │ │ │ ├── navygrid.img │ │ │ │ ├── navygrid.map │ │ │ │ ├── navygrid.pal │ │ │ │ ├── waves512.img │ │ │ │ ├── waves512.map │ │ │ │ └── waves512.pal │ │ └── source │ │ │ └── main.c │ ├── bgextpalette │ │ ├── Makefile │ │ ├── assets │ │ │ ├── blue.png │ │ │ ├── convert.sh │ │ │ ├── default.png │ │ │ ├── green.png │ │ │ └── red.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── blue.img │ │ │ │ ├── blue.map │ │ │ │ ├── blue.pal │ │ │ │ ├── green.pal │ │ │ │ └── red.pal │ │ │ └── fnt │ │ │ │ ├── default.img │ │ │ │ └── default.pal │ │ └── source │ │ │ └── main.c │ ├── bgmixed │ │ ├── Makefile │ │ ├── assets │ │ │ ├── ball.png │ │ │ ├── bg0.png │ │ │ ├── convert.sh │ │ │ ├── font16.png │ │ │ ├── img8b_1.png │ │ │ └── img8b_2.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── bg0.img │ │ │ │ ├── bg0.map │ │ │ │ └── bg0.pal │ │ │ ├── bmp │ │ │ │ ├── img8b_1.img │ │ │ │ ├── img8b_1.pal │ │ │ │ ├── img8b_2.img │ │ │ │ └── img8b_2.pal │ │ │ ├── fnt │ │ │ │ ├── font16.img │ │ │ │ └── font16.pal │ │ │ └── sprite │ │ │ │ ├── ball.img │ │ │ │ └── ball.pal │ │ └── source │ │ │ └── main.c │ ├── bgpalette │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ ├── default.png │ │ │ └── layer3.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── layer3.img │ │ │ │ ├── layer3.map │ │ │ │ └── layer3.pal │ │ │ └── fnt │ │ │ │ ├── default.img │ │ │ │ └── default.pal │ │ └── source │ │ │ └── main.c │ ├── imgdraw │ │ ├── Makefile │ │ ├── assets │ │ │ ├── bitmap16.png │ │ │ ├── blueball.png │ │ │ └── convert.sh │ │ ├── nitrofiles │ │ │ └── bmp │ │ │ │ ├── bitmap16.img │ │ │ │ └── blueball.img │ │ └── source │ │ │ └── main.c │ ├── sprite │ │ ├── Makefile │ │ ├── assets │ │ │ ├── ball.png │ │ │ ├── bg2.png │ │ │ ├── bg3.png │ │ │ ├── character.png │ │ │ ├── convert.sh │ │ │ └── nfl.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── bg2.img │ │ │ │ ├── bg2.map │ │ │ │ ├── bg2.pal │ │ │ │ ├── bg3.img │ │ │ │ ├── bg3.map │ │ │ │ ├── bg3.pal │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ │ └── sprite │ │ │ │ ├── ball.img │ │ │ │ ├── ball.pal │ │ │ │ ├── character.img │ │ │ │ └── character.pal │ │ └── source │ │ │ └── main.c │ ├── spriteaffine │ │ ├── Makefile │ │ ├── assets │ │ │ ├── ball.png │ │ │ └── convert.sh │ │ ├── nitrofiles │ │ │ └── sprite │ │ │ │ ├── ball.img │ │ │ │ └── ball.pal │ │ └── source │ │ │ └── main.c │ ├── spritepal │ │ ├── Makefile │ │ ├── assets │ │ │ ├── ball.png │ │ │ ├── bg2.png │ │ │ ├── bg3.png │ │ │ ├── character.png │ │ │ ├── convert.sh │ │ │ └── nfl.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── bg2.img │ │ │ │ ├── bg2.map │ │ │ │ ├── bg2.pal │ │ │ │ ├── bg3.img │ │ │ │ ├── bg3.map │ │ │ │ ├── bg3.pal │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ │ └── sprite │ │ │ │ ├── ball.img │ │ │ │ ├── ball.pal │ │ │ │ ├── character.img │ │ │ │ └── character.pal │ │ └── source │ │ │ └── main.c │ ├── sprites_all_sizes │ │ ├── Makefile │ │ ├── assets │ │ │ ├── 16x16.png │ │ │ ├── 16x32.png │ │ │ ├── 16x8.png │ │ │ ├── 32x16.png │ │ │ ├── 32x32.png │ │ │ ├── 32x64.png │ │ │ ├── 32x8.png │ │ │ ├── 64x32.png │ │ │ ├── 64x64.png │ │ │ ├── 8x16.png │ │ │ ├── 8x32.png │ │ │ ├── 8x8.png │ │ │ ├── convert.sh │ │ │ └── white_bg.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── white_bg.img │ │ │ │ ├── white_bg.map │ │ │ │ └── white_bg.pal │ │ │ └── sprite │ │ │ │ ├── 16x16.img │ │ │ │ ├── 16x32.img │ │ │ │ ├── 16x8.img │ │ │ │ ├── 32x16.img │ │ │ │ ├── 32x32.img │ │ │ │ ├── 32x64.img │ │ │ │ ├── 32x8.img │ │ │ │ ├── 64x32.img │ │ │ │ ├── 64x64.img │ │ │ │ ├── 64x64.pal │ │ │ │ ├── 8x16.img │ │ │ │ ├── 8x32.img │ │ │ │ └── 8x8.img │ │ └── source │ │ │ └── main.c │ ├── tilechange │ │ ├── Makefile │ │ ├── assets │ │ │ ├── colmap.png │ │ │ ├── convert.sh │ │ │ ├── default.png │ │ │ ├── layer3.png │ │ │ └── pointer.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── colmap.img │ │ │ │ ├── colmap.map │ │ │ │ ├── colmap.pal │ │ │ │ ├── layer3.img │ │ │ │ ├── layer3.map │ │ │ │ └── layer3.pal │ │ │ ├── fnt │ │ │ │ ├── default.img │ │ │ │ └── default.pal │ │ │ └── sprite │ │ │ │ ├── pointer.img │ │ │ │ └── pointer.pal │ │ └── source │ │ │ └── main.c │ └── tileflip │ │ ├── Makefile │ │ ├── assets │ │ ├── convert.sh │ │ └── nfl.png │ │ ├── nitrofiles │ │ └── bg │ │ │ ├── nfl.img │ │ │ ├── nfl.map │ │ │ └── nfl.pal │ │ └── source │ │ └── main.c ├── media │ ├── Makefile │ ├── bmpload │ │ ├── Makefile │ │ ├── nitrofiles │ │ │ └── bmp │ │ │ │ ├── bmp16bits.bmp │ │ │ │ ├── bmp24bits.bmp │ │ │ │ └── bmp8bits.bmp │ │ └── source │ │ │ └── main.c │ └── bmpscroll │ │ ├── Makefile │ │ ├── nitrofiles │ │ └── bmp │ │ │ └── lostend.bmp │ │ └── source │ │ └── main.c ├── misc │ ├── Makefile │ └── language │ │ ├── Makefile │ │ ├── nitrofiles │ │ └── delete.me │ │ └── source │ │ └── main.c ├── sound │ ├── Makefile │ └── rawsfx │ │ ├── Makefile │ │ ├── assets │ │ ├── convert.sh │ │ ├── default.png │ │ └── layer3.png │ │ ├── nitrofiles │ │ ├── bg │ │ │ ├── layer3.img │ │ │ ├── layer3.map │ │ │ └── layer3.pal │ │ ├── fnt │ │ │ ├── default.img │ │ │ └── default.pal │ │ └── sfx │ │ │ ├── music.raw │ │ │ └── sample.raw │ │ └── source │ │ └── main.c ├── text │ ├── Makefile │ ├── text16 │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ ├── font16.png │ │ │ └── nfl.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ │ └── fnt │ │ │ │ ├── font16.img │ │ │ │ └── font16.pal │ │ └── source │ │ │ └── main.c │ ├── textcolor │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ ├── default.png │ │ │ └── nfl.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── nfl.img │ │ │ │ ├── nfl.map │ │ │ │ └── nfl.pal │ │ │ └── fnt │ │ │ │ ├── default.img │ │ │ │ └── default.pal │ │ └── source │ │ │ └── main.c │ ├── textdemo │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ ├── default.png │ │ │ └── layer3.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── layer3.img │ │ │ │ ├── layer3.map │ │ │ │ └── layer3.pal │ │ │ └── fnt │ │ │ │ ├── default.img │ │ │ │ └── default.pal │ │ └── source │ │ │ └── main.c │ ├── textdemo16 │ │ ├── Makefile │ │ ├── assets │ │ │ ├── convert.sh │ │ │ ├── font16.png │ │ │ └── layer3.png │ │ ├── nitrofiles │ │ │ ├── bg │ │ │ │ ├── layer3.img │ │ │ │ ├── layer3.map │ │ │ │ └── layer3.pal │ │ │ └── fnt │ │ │ │ ├── font16.img │ │ │ │ └── font16.pal │ │ └── source │ │ │ └── main.c │ └── textscroll │ │ ├── Makefile │ │ ├── assets │ │ ├── convert.sh │ │ ├── default.png │ │ └── layer3.png │ │ ├── nitrofiles │ │ ├── bg │ │ │ ├── layer3.img │ │ │ ├── layer3.map │ │ │ └── layer3.pal │ │ └── fnt │ │ │ ├── default.img │ │ │ └── default.pal │ │ └── source │ │ └── main.c └── wifi │ ├── Makefile │ └── udptalk │ ├── Makefile │ ├── nitrofiles │ └── delete.me │ └── source │ └── main.c ├── include ├── nf_2d.h ├── nf_3d.h ├── nf_affinebg.h ├── nf_basic.h ├── nf_bitmapbg.h ├── nf_collision.h ├── nf_lib.h ├── nf_media.h ├── nf_mixedbg.h ├── nf_sound.h ├── nf_sprite256.h ├── nf_sprite3d.h ├── nf_text.h ├── nf_text16.h ├── nf_tiledbg.h └── nf_wifi.h ├── licenses ├── cc-by-4.0.txt ├── cc0-1.0.txt ├── mit.txt └── unsplash.txt ├── readme.rst ├── source ├── nf_2d.c ├── nf_3d.c ├── nf_affinebg.c ├── nf_basic.c ├── nf_bitmapbg.c ├── nf_collision.c ├── nf_media.c ├── nf_mixedbg.c ├── nf_sound.c ├── nf_sprite256.c ├── nf_sprite3d.c ├── nf_text.c ├── nf_text16.c ├── nf_tiledbg.c └── nf_wifi.c └── template ├── Makefile ├── icon.bmp ├── nitrofiles └── delete.me └── source └── main.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | docs/ 2 | lib/ 3 | build/ 4 | *.nds 5 | *.elf 6 | -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/Doxyfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/Makefile -------------------------------------------------------------------------------- /changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/changelog.rst -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | build-all/ 2 | -------------------------------------------------------------------------------- /examples/3dsprites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/Makefile -------------------------------------------------------------------------------- /examples/3dsprites/alpha/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/3dsprites/alpha/assets/blueball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/alpha/assets/blueball.png -------------------------------------------------------------------------------- /examples/3dsprites/alpha/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/alpha/assets/convert.sh -------------------------------------------------------------------------------- /examples/3dsprites/alpha/assets/nature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/alpha/assets/nature.png -------------------------------------------------------------------------------- /examples/3dsprites/alpha/nitrofiles/bg/nature.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/alpha/nitrofiles/bg/nature.img -------------------------------------------------------------------------------- /examples/3dsprites/alpha/nitrofiles/bg/nature.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/alpha/nitrofiles/bg/nature.map -------------------------------------------------------------------------------- /examples/3dsprites/alpha/nitrofiles/bg/nature.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/alpha/nitrofiles/bg/nature.pal -------------------------------------------------------------------------------- /examples/3dsprites/alpha/nitrofiles/sprite/blueball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/alpha/nitrofiles/sprite/blueball.img -------------------------------------------------------------------------------- /examples/3dsprites/alpha/nitrofiles/sprite/blueball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/alpha/nitrofiles/sprite/blueball.pal -------------------------------------------------------------------------------- /examples/3dsprites/alpha/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/alpha/source/main.c -------------------------------------------------------------------------------- /examples/3dsprites/animation/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/3dsprites/animation/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/assets/bg3.png -------------------------------------------------------------------------------- /examples/3dsprites/animation/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/assets/convert.sh -------------------------------------------------------------------------------- /examples/3dsprites/animation/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/assets/nfl.png -------------------------------------------------------------------------------- /examples/3dsprites/animation/assets/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/assets/numbers.png -------------------------------------------------------------------------------- /examples/3dsprites/animation/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/3dsprites/animation/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/3dsprites/animation/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/3dsprites/animation/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/3dsprites/animation/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/3dsprites/animation/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/3dsprites/animation/nitrofiles/sprite/numbers.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/nitrofiles/sprite/numbers.img -------------------------------------------------------------------------------- /examples/3dsprites/animation/nitrofiles/sprite/numbers.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/nitrofiles/sprite/numbers.pal -------------------------------------------------------------------------------- /examples/3dsprites/animation/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/animation/source/main.c -------------------------------------------------------------------------------- /examples/3dsprites/basic/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/3dsprites/basic/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/assets/bg3.png -------------------------------------------------------------------------------- /examples/3dsprites/basic/assets/blueball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/assets/blueball.png -------------------------------------------------------------------------------- /examples/3dsprites/basic/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/assets/convert.sh -------------------------------------------------------------------------------- /examples/3dsprites/basic/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/assets/nfl.png -------------------------------------------------------------------------------- /examples/3dsprites/basic/assets/redcar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/assets/redcar.png -------------------------------------------------------------------------------- /examples/3dsprites/basic/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/3dsprites/basic/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/3dsprites/basic/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/3dsprites/basic/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/3dsprites/basic/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/3dsprites/basic/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/3dsprites/basic/nitrofiles/sprite/blueball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/nitrofiles/sprite/blueball.img -------------------------------------------------------------------------------- /examples/3dsprites/basic/nitrofiles/sprite/blueball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/nitrofiles/sprite/blueball.pal -------------------------------------------------------------------------------- /examples/3dsprites/basic/nitrofiles/sprite/redcar.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/nitrofiles/sprite/redcar.img -------------------------------------------------------------------------------- /examples/3dsprites/basic/nitrofiles/sprite/redcar.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/nitrofiles/sprite/redcar.pal -------------------------------------------------------------------------------- /examples/3dsprites/basic/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/basic/source/main.c -------------------------------------------------------------------------------- /examples/3dsprites/delete/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/3dsprites/delete/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/assets/bg3.png -------------------------------------------------------------------------------- /examples/3dsprites/delete/assets/blueball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/assets/blueball.png -------------------------------------------------------------------------------- /examples/3dsprites/delete/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/assets/convert.sh -------------------------------------------------------------------------------- /examples/3dsprites/delete/assets/redcar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/assets/redcar.png -------------------------------------------------------------------------------- /examples/3dsprites/delete/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/3dsprites/delete/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/3dsprites/delete/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/3dsprites/delete/nitrofiles/sprite/blueball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/nitrofiles/sprite/blueball.img -------------------------------------------------------------------------------- /examples/3dsprites/delete/nitrofiles/sprite/blueball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/nitrofiles/sprite/blueball.pal -------------------------------------------------------------------------------- /examples/3dsprites/delete/nitrofiles/sprite/redcar.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/nitrofiles/sprite/redcar.img -------------------------------------------------------------------------------- /examples/3dsprites/delete/nitrofiles/sprite/redcar.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/nitrofiles/sprite/redcar.pal -------------------------------------------------------------------------------- /examples/3dsprites/delete/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/delete/source/main.c -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/assets/bg3.png -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/assets/blueball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/assets/blueball.png -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/assets/convert.sh -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/assets/redcar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/assets/redcar.png -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/nitrofiles/sprite/blueball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/nitrofiles/sprite/blueball.img -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/nitrofiles/sprite/blueball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/nitrofiles/sprite/blueball.pal -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/nitrofiles/sprite/redcar.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/nitrofiles/sprite/redcar.img -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/nitrofiles/sprite/redcar.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/nitrofiles/sprite/redcar.pal -------------------------------------------------------------------------------- /examples/3dsprites/rotscale/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/rotscale/source/main.c -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/assets/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/assets/bg1.png -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/assets/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/assets/bg2.png -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/assets/bg3.png -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/assets/convert.sh -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/assets/nfl.png -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/assets/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/assets/numbers.png -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/bg1.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/bg1.img -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/bg1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/bg1.map -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/bg1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/bg1.pal -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/bg2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/bg2.img -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/bg2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/bg2.map -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/bg2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/bg2.pal -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/sprite/numbers.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/sprite/numbers.img -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/nitrofiles/sprite/numbers.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/nitrofiles/sprite/numbers.pal -------------------------------------------------------------------------------- /examples/3dsprites/setlayer/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setlayer/source/main.c -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/assets/bg3.png -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/assets/blueball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/assets/blueball.png -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/assets/convert.sh -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/assets/redcar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/assets/redcar.png -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/nitrofiles/sprite/blueball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/nitrofiles/sprite/blueball.img -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/nitrofiles/sprite/blueball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/nitrofiles/sprite/blueball.pal -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/nitrofiles/sprite/redcar.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/nitrofiles/sprite/redcar.img -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/nitrofiles/sprite/redcar.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/nitrofiles/sprite/redcar.pal -------------------------------------------------------------------------------- /examples/3dsprites/setpriority/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/setpriority/source/main.c -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/assets/bg3.png -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/assets/blueball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/assets/blueball.png -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/assets/convert.sh -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/assets/redcar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/assets/redcar.png -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/nitrofiles/sprite/blueball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/nitrofiles/sprite/blueball.img -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/nitrofiles/sprite/blueball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/nitrofiles/sprite/blueball.pal -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/nitrofiles/sprite/redcar.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/nitrofiles/sprite/redcar.img -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/nitrofiles/sprite/redcar.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/nitrofiles/sprite/redcar.pal -------------------------------------------------------------------------------- /examples/3dsprites/swappriority/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/3dsprites/swappriority/source/main.c -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/Makefile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/Makefile.example -------------------------------------------------------------------------------- /examples/_original_assets/assorted_flowers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/_original_assets/assorted_flowers.jpg -------------------------------------------------------------------------------- /examples/_original_assets/assorted_flowers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/_original_assets/assorted_flowers.txt -------------------------------------------------------------------------------- /examples/_original_assets/cinque_terre.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/_original_assets/cinque_terre.jpg -------------------------------------------------------------------------------- /examples/_original_assets/cinque_terre.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/_original_assets/cinque_terre.txt -------------------------------------------------------------------------------- /examples/_original_assets/nebulae.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/_original_assets/nebulae.jpg -------------------------------------------------------------------------------- /examples/_original_assets/nebulae.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/_original_assets/nebulae.txt -------------------------------------------------------------------------------- /examples/_original_assets/sea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/_original_assets/sea.jpg -------------------------------------------------------------------------------- /examples/_original_assets/sea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/_original_assets/sea.txt -------------------------------------------------------------------------------- /examples/collisions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/Makefile -------------------------------------------------------------------------------- /examples/collisions/barrels/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/collisions/barrels/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/assets/convert.sh -------------------------------------------------------------------------------- /examples/collisions/barrels/assets/pdemo_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/assets/pdemo_bg.png -------------------------------------------------------------------------------- /examples/collisions/barrels/assets/pdemo_colmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/assets/pdemo_colmap.png -------------------------------------------------------------------------------- /examples/collisions/barrels/assets/whiteball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/assets/whiteball.png -------------------------------------------------------------------------------- /examples/collisions/barrels/nitrofiles/bg/pdemo_bg.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/nitrofiles/bg/pdemo_bg.img -------------------------------------------------------------------------------- /examples/collisions/barrels/nitrofiles/bg/pdemo_bg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/nitrofiles/bg/pdemo_bg.map -------------------------------------------------------------------------------- /examples/collisions/barrels/nitrofiles/bg/pdemo_bg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/nitrofiles/bg/pdemo_bg.pal -------------------------------------------------------------------------------- /examples/collisions/barrels/nitrofiles/maps/pdemo_colmap.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/nitrofiles/maps/pdemo_colmap.img -------------------------------------------------------------------------------- /examples/collisions/barrels/nitrofiles/maps/pdemo_colmap.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/nitrofiles/maps/pdemo_colmap.map -------------------------------------------------------------------------------- /examples/collisions/barrels/nitrofiles/sprite/whiteball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/nitrofiles/sprite/whiteball.img -------------------------------------------------------------------------------- /examples/collisions/barrels/nitrofiles/sprite/whiteball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/nitrofiles/sprite/whiteball.pal -------------------------------------------------------------------------------- /examples/collisions/barrels/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/barrels/source/main.c -------------------------------------------------------------------------------- /examples/collisions/pixels/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/collisions/pixels/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/assets/convert.sh -------------------------------------------------------------------------------- /examples/collisions/pixels/assets/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/assets/pointer.png -------------------------------------------------------------------------------- /examples/collisions/pixels/assets/ppc_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/assets/ppc_bg.png -------------------------------------------------------------------------------- /examples/collisions/pixels/assets/ppc_cmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/assets/ppc_cmap.png -------------------------------------------------------------------------------- /examples/collisions/pixels/nitrofiles/bg/ppc_bg.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/nitrofiles/bg/ppc_bg.img -------------------------------------------------------------------------------- /examples/collisions/pixels/nitrofiles/bg/ppc_bg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/nitrofiles/bg/ppc_bg.map -------------------------------------------------------------------------------- /examples/collisions/pixels/nitrofiles/bg/ppc_bg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/nitrofiles/bg/ppc_bg.pal -------------------------------------------------------------------------------- /examples/collisions/pixels/nitrofiles/maps/ppc_cmap.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/nitrofiles/maps/ppc_cmap.img -------------------------------------------------------------------------------- /examples/collisions/pixels/nitrofiles/maps/ppc_cmap.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/nitrofiles/maps/ppc_cmap.map -------------------------------------------------------------------------------- /examples/collisions/pixels/nitrofiles/sprite/pointer.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/nitrofiles/sprite/pointer.img -------------------------------------------------------------------------------- /examples/collisions/pixels/nitrofiles/sprite/pointer.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/nitrofiles/sprite/pointer.pal -------------------------------------------------------------------------------- /examples/collisions/pixels/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/pixels/source/main.c -------------------------------------------------------------------------------- /examples/collisions/tiles/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/collisions/tiles/assets/cmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/assets/cmap.png -------------------------------------------------------------------------------- /examples/collisions/tiles/assets/colmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/assets/colmap.png -------------------------------------------------------------------------------- /examples/collisions/tiles/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/assets/convert.sh -------------------------------------------------------------------------------- /examples/collisions/tiles/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/assets/default.png -------------------------------------------------------------------------------- /examples/collisions/tiles/assets/layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/assets/layer3.png -------------------------------------------------------------------------------- /examples/collisions/tiles/assets/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/assets/pointer.png -------------------------------------------------------------------------------- /examples/collisions/tiles/nitrofiles/bg/colmap.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/nitrofiles/bg/colmap.img -------------------------------------------------------------------------------- /examples/collisions/tiles/nitrofiles/bg/colmap.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/nitrofiles/bg/colmap.map -------------------------------------------------------------------------------- /examples/collisions/tiles/nitrofiles/bg/colmap.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/nitrofiles/bg/colmap.pal -------------------------------------------------------------------------------- /examples/collisions/tiles/nitrofiles/bg/layer3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/nitrofiles/bg/layer3.img -------------------------------------------------------------------------------- /examples/collisions/tiles/nitrofiles/bg/layer3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/nitrofiles/bg/layer3.map -------------------------------------------------------------------------------- /examples/collisions/tiles/nitrofiles/bg/layer3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/nitrofiles/bg/layer3.pal -------------------------------------------------------------------------------- /examples/collisions/tiles/nitrofiles/fnt/default.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/nitrofiles/fnt/default.img -------------------------------------------------------------------------------- /examples/collisions/tiles/nitrofiles/fnt/default.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/nitrofiles/fnt/default.pal -------------------------------------------------------------------------------- /examples/collisions/tiles/nitrofiles/maps/cmap.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/nitrofiles/maps/cmap.map -------------------------------------------------------------------------------- /examples/collisions/tiles/nitrofiles/sprite/pointer.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/nitrofiles/sprite/pointer.img -------------------------------------------------------------------------------- /examples/collisions/tiles/nitrofiles/sprite/pointer.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/nitrofiles/sprite/pointer.pal -------------------------------------------------------------------------------- /examples/collisions/tiles/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/collisions/tiles/source/main.c -------------------------------------------------------------------------------- /examples/demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/Makefile -------------------------------------------------------------------------------- /examples/demo/reveal/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/demo/reveal/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/assets/ball.png -------------------------------------------------------------------------------- /examples/demo/reveal/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/assets/convert.sh -------------------------------------------------------------------------------- /examples/demo/reveal/assets/img8b_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/assets/img8b_1.png -------------------------------------------------------------------------------- /examples/demo/reveal/assets/img8b_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/assets/img8b_2.png -------------------------------------------------------------------------------- /examples/demo/reveal/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/assets/nfl.png -------------------------------------------------------------------------------- /examples/demo/reveal/nitrofiles/bg/img8b_1.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/nitrofiles/bg/img8b_1.img -------------------------------------------------------------------------------- /examples/demo/reveal/nitrofiles/bg/img8b_1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/nitrofiles/bg/img8b_1.pal -------------------------------------------------------------------------------- /examples/demo/reveal/nitrofiles/bg/img8b_2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/nitrofiles/bg/img8b_2.img -------------------------------------------------------------------------------- /examples/demo/reveal/nitrofiles/bg/img8b_2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/nitrofiles/bg/img8b_2.pal -------------------------------------------------------------------------------- /examples/demo/reveal/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/demo/reveal/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/demo/reveal/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/demo/reveal/nitrofiles/spr/ball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/nitrofiles/spr/ball.img -------------------------------------------------------------------------------- /examples/demo/reveal/nitrofiles/spr/ball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/nitrofiles/spr/ball.pal -------------------------------------------------------------------------------- /examples/demo/reveal/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/reveal/source/main.c -------------------------------------------------------------------------------- /examples/demo/water/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/demo/water/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/assets/convert.sh -------------------------------------------------------------------------------- /examples/demo/water/assets/importante.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/assets/importante.txt -------------------------------------------------------------------------------- /examples/demo/water/assets/layer0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/assets/layer0.png -------------------------------------------------------------------------------- /examples/demo/water/assets/layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/assets/layer1.png -------------------------------------------------------------------------------- /examples/demo/water/assets/layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/assets/layer2.png -------------------------------------------------------------------------------- /examples/demo/water/assets/layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/assets/layer3.png -------------------------------------------------------------------------------- /examples/demo/water/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/assets/nfl.png -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer0.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer0.img -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer0.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer0.map -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer0.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer0.pal -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer1.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer1.img -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer1.map -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer1.pal -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer2.img -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer2.map -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer2.pal -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer3.img -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer3.map -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/layer3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/layer3.pal -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/demo/water/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/demo/water/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/water/source/main.c -------------------------------------------------------------------------------- /examples/demo/wave/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/demo/wave/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/wave/assets/convert.sh -------------------------------------------------------------------------------- /examples/demo/wave/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/wave/assets/nfl.png -------------------------------------------------------------------------------- /examples/demo/wave/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/wave/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/demo/wave/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/wave/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/demo/wave/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/wave/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/demo/wave/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/wave/source/main.c -------------------------------------------------------------------------------- /examples/demo/zoomx2/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/demo/zoomx2/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/zoomx2/assets/convert.sh -------------------------------------------------------------------------------- /examples/demo/zoomx2/assets/img16_c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/zoomx2/assets/img16_c.jpg -------------------------------------------------------------------------------- /examples/demo/zoomx2/nitrofiles/bmp/img16_c.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/zoomx2/nitrofiles/bmp/img16_c.img -------------------------------------------------------------------------------- /examples/demo/zoomx2/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/zoomx2/source/main.c -------------------------------------------------------------------------------- /examples/demo/zoomx3/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/demo/zoomx3/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/zoomx3/assets/convert.sh -------------------------------------------------------------------------------- /examples/demo/zoomx3/assets/img16_c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/zoomx3/assets/img16_c.jpg -------------------------------------------------------------------------------- /examples/demo/zoomx3/nitrofiles/bmp/img16_c.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/zoomx3/nitrofiles/bmp/img16_c.img -------------------------------------------------------------------------------- /examples/demo/zoomx3/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/demo/zoomx3/source/main.c -------------------------------------------------------------------------------- /examples/graphics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/Makefile -------------------------------------------------------------------------------- /examples/graphics/alpha/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/alpha/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/assets/ball.png -------------------------------------------------------------------------------- /examples/graphics/alpha/assets/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/assets/bg2.png -------------------------------------------------------------------------------- /examples/graphics/alpha/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/assets/bg3.png -------------------------------------------------------------------------------- /examples/graphics/alpha/assets/character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/assets/character.png -------------------------------------------------------------------------------- /examples/graphics/alpha/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/alpha/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/assets/nfl.png -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/bg/bg2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/bg/bg2.img -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/bg/bg2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/bg/bg2.map -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/bg/bg2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/bg/bg2.pal -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/sprite/ball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/sprite/ball.img -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/sprite/ball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/sprite/ball.pal -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/sprite/character.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/sprite/character.img -------------------------------------------------------------------------------- /examples/graphics/alpha/nitrofiles/sprite/character.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/nitrofiles/sprite/character.pal -------------------------------------------------------------------------------- /examples/graphics/alpha/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/alpha/source/main.c -------------------------------------------------------------------------------- /examples/graphics/animatedbg/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/animatedbg/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/animatedbg/assets/frames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/assets/frames.png -------------------------------------------------------------------------------- /examples/graphics/animatedbg/assets/important.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/assets/important.txt -------------------------------------------------------------------------------- /examples/graphics/animatedbg/assets/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/assets/instructions.txt -------------------------------------------------------------------------------- /examples/graphics/animatedbg/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/assets/nfl.png -------------------------------------------------------------------------------- /examples/graphics/animatedbg/assets/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/assets/water.png -------------------------------------------------------------------------------- /examples/graphics/animatedbg/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/graphics/animatedbg/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/graphics/animatedbg/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/graphics/animatedbg/nitrofiles/bg/water.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/nitrofiles/bg/water.img -------------------------------------------------------------------------------- /examples/graphics/animatedbg/nitrofiles/bg/water.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/nitrofiles/bg/water.pal -------------------------------------------------------------------------------- /examples/graphics/animatedbg/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/animatedbg/source/main.c -------------------------------------------------------------------------------- /examples/graphics/backbuffer/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/backbuffer/nitrofiles/delete.me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/graphics/backbuffer/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer/source/main.c -------------------------------------------------------------------------------- /examples/graphics/backbuffer2/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/backbuffer2/assets/bitmap16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer2/assets/bitmap16.png -------------------------------------------------------------------------------- /examples/graphics/backbuffer2/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer2/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/backbuffer2/nitrofiles/bmp/bitmap16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer2/nitrofiles/bmp/bitmap16.img -------------------------------------------------------------------------------- /examples/graphics/backbuffer2/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer2/source/main.c -------------------------------------------------------------------------------- /examples/graphics/backbuffer3/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/backbuffer3/assets/bitmap16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer3/assets/bitmap16.png -------------------------------------------------------------------------------- /examples/graphics/backbuffer3/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer3/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/backbuffer3/assets/img16_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer3/assets/img16_a.png -------------------------------------------------------------------------------- /examples/graphics/backbuffer3/assets/img16_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer3/assets/img16_b.png -------------------------------------------------------------------------------- /examples/graphics/backbuffer3/nitrofiles/bmp/bitmap16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer3/nitrofiles/bmp/bitmap16.img -------------------------------------------------------------------------------- /examples/graphics/backbuffer3/nitrofiles/bmp/img16_a.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer3/nitrofiles/bmp/img16_a.img -------------------------------------------------------------------------------- /examples/graphics/backbuffer3/nitrofiles/bmp/img16_b.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer3/nitrofiles/bmp/img16_b.img -------------------------------------------------------------------------------- /examples/graphics/backbuffer3/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer3/source/main.c -------------------------------------------------------------------------------- /examples/graphics/backbuffer4/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/backbuffer4/assets/bitmap16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer4/assets/bitmap16.png -------------------------------------------------------------------------------- /examples/graphics/backbuffer4/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer4/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/backbuffer4/nitrofiles/bmp/bitmap16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer4/nitrofiles/bmp/bitmap16.img -------------------------------------------------------------------------------- /examples/graphics/backbuffer4/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/backbuffer4/source/main.c -------------------------------------------------------------------------------- /examples/graphics/bg/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/bg/assets/bg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/assets/bg0.png -------------------------------------------------------------------------------- /examples/graphics/bg/assets/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/assets/bg1.png -------------------------------------------------------------------------------- /examples/graphics/bg/assets/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/assets/bg2.png -------------------------------------------------------------------------------- /examples/graphics/bg/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/assets/bg3.png -------------------------------------------------------------------------------- /examples/graphics/bg/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/bg/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/assets/nfl.png -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg0.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg0.img -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg0.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg0.map -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg0.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg0.pal -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg1.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg1.img -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg1.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg1.map -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg1.pal -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg2.img -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg2.map -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg2.pal -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/graphics/bg/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/graphics/bg/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg/source/main.c -------------------------------------------------------------------------------- /examples/graphics/bg16bits/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/bg16bits/nitrofiles/delete.me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/graphics/bg16bits/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg16bits/source/main.c -------------------------------------------------------------------------------- /examples/graphics/bg16bitsload/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/bg16bitsload/assets/bitmap16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg16bitsload/assets/bitmap16.jpg -------------------------------------------------------------------------------- /examples/graphics/bg16bitsload/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg16bitsload/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/bg16bitsload/nitrofiles/bmp/bitmap16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg16bitsload/nitrofiles/bmp/bitmap16.img -------------------------------------------------------------------------------- /examples/graphics/bg16bitsload/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg16bitsload/source/main.c -------------------------------------------------------------------------------- /examples/graphics/bg8bits/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/bg8bits/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg8bits/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/bg8bits/assets/img8b_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg8bits/assets/img8b_1.png -------------------------------------------------------------------------------- /examples/graphics/bg8bits/assets/img8b_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg8bits/assets/img8b_2.png -------------------------------------------------------------------------------- /examples/graphics/bg8bits/assets/img8b_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg8bits/assets/img8b_3.png -------------------------------------------------------------------------------- /examples/graphics/bg8bits/nitrofiles/bmp/img8b_1.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg8bits/nitrofiles/bmp/img8b_1.img -------------------------------------------------------------------------------- /examples/graphics/bg8bits/nitrofiles/bmp/img8b_1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg8bits/nitrofiles/bmp/img8b_1.pal -------------------------------------------------------------------------------- /examples/graphics/bg8bits/nitrofiles/bmp/img8b_2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg8bits/nitrofiles/bmp/img8b_2.img -------------------------------------------------------------------------------- /examples/graphics/bg8bits/nitrofiles/bmp/img8b_2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg8bits/nitrofiles/bmp/img8b_2.pal -------------------------------------------------------------------------------- /examples/graphics/bg8bits/nitrofiles/bmp/img8b_3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg8bits/nitrofiles/bmp/img8b_3.img -------------------------------------------------------------------------------- /examples/graphics/bg8bits/nitrofiles/bmp/img8b_3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg8bits/nitrofiles/bmp/img8b_3.pal -------------------------------------------------------------------------------- /examples/graphics/bg8bits/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bg8bits/source/main.c -------------------------------------------------------------------------------- /examples/graphics/bgaffine/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/bgaffine/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/bgaffine/assets/flag512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/assets/flag512.png -------------------------------------------------------------------------------- /examples/graphics/bgaffine/assets/navygrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/assets/navygrid.png -------------------------------------------------------------------------------- /examples/graphics/bgaffine/assets/waves512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/assets/waves512.png -------------------------------------------------------------------------------- /examples/graphics/bgaffine/nitrofiles/bg/flag512.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/nitrofiles/bg/flag512.img -------------------------------------------------------------------------------- /examples/graphics/bgaffine/nitrofiles/bg/flag512.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/nitrofiles/bg/flag512.map -------------------------------------------------------------------------------- /examples/graphics/bgaffine/nitrofiles/bg/flag512.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/nitrofiles/bg/flag512.pal -------------------------------------------------------------------------------- /examples/graphics/bgaffine/nitrofiles/bg/navygrid.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/nitrofiles/bg/navygrid.img -------------------------------------------------------------------------------- /examples/graphics/bgaffine/nitrofiles/bg/navygrid.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/nitrofiles/bg/navygrid.map -------------------------------------------------------------------------------- /examples/graphics/bgaffine/nitrofiles/bg/navygrid.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/nitrofiles/bg/navygrid.pal -------------------------------------------------------------------------------- /examples/graphics/bgaffine/nitrofiles/bg/waves512.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/nitrofiles/bg/waves512.img -------------------------------------------------------------------------------- /examples/graphics/bgaffine/nitrofiles/bg/waves512.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/nitrofiles/bg/waves512.map -------------------------------------------------------------------------------- /examples/graphics/bgaffine/nitrofiles/bg/waves512.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/nitrofiles/bg/waves512.pal -------------------------------------------------------------------------------- /examples/graphics/bgaffine/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgaffine/source/main.c -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/assets/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/assets/blue.png -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/assets/default.png -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/assets/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/assets/green.png -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/assets/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/assets/red.png -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/nitrofiles/bg/blue.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/nitrofiles/bg/blue.img -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/nitrofiles/bg/blue.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/nitrofiles/bg/blue.map -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/nitrofiles/bg/blue.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/nitrofiles/bg/blue.pal -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/nitrofiles/bg/green.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/nitrofiles/bg/green.pal -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/nitrofiles/bg/red.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/nitrofiles/bg/red.pal -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/nitrofiles/fnt/default.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/nitrofiles/fnt/default.img -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/nitrofiles/fnt/default.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/nitrofiles/fnt/default.pal -------------------------------------------------------------------------------- /examples/graphics/bgextpalette/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgextpalette/source/main.c -------------------------------------------------------------------------------- /examples/graphics/bgmixed/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/bgmixed/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/assets/ball.png -------------------------------------------------------------------------------- /examples/graphics/bgmixed/assets/bg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/assets/bg0.png -------------------------------------------------------------------------------- /examples/graphics/bgmixed/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/bgmixed/assets/font16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/assets/font16.png -------------------------------------------------------------------------------- /examples/graphics/bgmixed/assets/img8b_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/assets/img8b_1.png -------------------------------------------------------------------------------- /examples/graphics/bgmixed/assets/img8b_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/assets/img8b_2.png -------------------------------------------------------------------------------- /examples/graphics/bgmixed/nitrofiles/bg/bg0.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/nitrofiles/bg/bg0.img -------------------------------------------------------------------------------- /examples/graphics/bgmixed/nitrofiles/bg/bg0.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/nitrofiles/bg/bg0.map -------------------------------------------------------------------------------- /examples/graphics/bgmixed/nitrofiles/bg/bg0.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/nitrofiles/bg/bg0.pal -------------------------------------------------------------------------------- /examples/graphics/bgmixed/nitrofiles/bmp/img8b_1.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/nitrofiles/bmp/img8b_1.img -------------------------------------------------------------------------------- /examples/graphics/bgmixed/nitrofiles/bmp/img8b_1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/nitrofiles/bmp/img8b_1.pal -------------------------------------------------------------------------------- /examples/graphics/bgmixed/nitrofiles/bmp/img8b_2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/nitrofiles/bmp/img8b_2.img -------------------------------------------------------------------------------- /examples/graphics/bgmixed/nitrofiles/bmp/img8b_2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/nitrofiles/bmp/img8b_2.pal -------------------------------------------------------------------------------- /examples/graphics/bgmixed/nitrofiles/fnt/font16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/nitrofiles/fnt/font16.img -------------------------------------------------------------------------------- /examples/graphics/bgmixed/nitrofiles/fnt/font16.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/nitrofiles/fnt/font16.pal -------------------------------------------------------------------------------- /examples/graphics/bgmixed/nitrofiles/sprite/ball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/nitrofiles/sprite/ball.img -------------------------------------------------------------------------------- /examples/graphics/bgmixed/nitrofiles/sprite/ball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/nitrofiles/sprite/ball.pal -------------------------------------------------------------------------------- /examples/graphics/bgmixed/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgmixed/source/main.c -------------------------------------------------------------------------------- /examples/graphics/bgpalette/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/bgpalette/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgpalette/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/bgpalette/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgpalette/assets/default.png -------------------------------------------------------------------------------- /examples/graphics/bgpalette/assets/layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgpalette/assets/layer3.png -------------------------------------------------------------------------------- /examples/graphics/bgpalette/nitrofiles/bg/layer3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgpalette/nitrofiles/bg/layer3.img -------------------------------------------------------------------------------- /examples/graphics/bgpalette/nitrofiles/bg/layer3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgpalette/nitrofiles/bg/layer3.map -------------------------------------------------------------------------------- /examples/graphics/bgpalette/nitrofiles/bg/layer3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgpalette/nitrofiles/bg/layer3.pal -------------------------------------------------------------------------------- /examples/graphics/bgpalette/nitrofiles/fnt/default.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgpalette/nitrofiles/fnt/default.img -------------------------------------------------------------------------------- /examples/graphics/bgpalette/nitrofiles/fnt/default.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgpalette/nitrofiles/fnt/default.pal -------------------------------------------------------------------------------- /examples/graphics/bgpalette/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/bgpalette/source/main.c -------------------------------------------------------------------------------- /examples/graphics/imgdraw/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/imgdraw/assets/bitmap16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/imgdraw/assets/bitmap16.png -------------------------------------------------------------------------------- /examples/graphics/imgdraw/assets/blueball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/imgdraw/assets/blueball.png -------------------------------------------------------------------------------- /examples/graphics/imgdraw/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/imgdraw/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/imgdraw/nitrofiles/bmp/bitmap16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/imgdraw/nitrofiles/bmp/bitmap16.img -------------------------------------------------------------------------------- /examples/graphics/imgdraw/nitrofiles/bmp/blueball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/imgdraw/nitrofiles/bmp/blueball.img -------------------------------------------------------------------------------- /examples/graphics/imgdraw/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/imgdraw/source/main.c -------------------------------------------------------------------------------- /examples/graphics/sprite/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/sprite/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/assets/ball.png -------------------------------------------------------------------------------- /examples/graphics/sprite/assets/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/assets/bg2.png -------------------------------------------------------------------------------- /examples/graphics/sprite/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/assets/bg3.png -------------------------------------------------------------------------------- /examples/graphics/sprite/assets/character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/assets/character.png -------------------------------------------------------------------------------- /examples/graphics/sprite/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/sprite/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/assets/nfl.png -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/bg/bg2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/bg/bg2.img -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/bg/bg2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/bg/bg2.map -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/bg/bg2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/bg/bg2.pal -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/sprite/ball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/sprite/ball.img -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/sprite/ball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/sprite/ball.pal -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/sprite/character.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/sprite/character.img -------------------------------------------------------------------------------- /examples/graphics/sprite/nitrofiles/sprite/character.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/nitrofiles/sprite/character.pal -------------------------------------------------------------------------------- /examples/graphics/sprite/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprite/source/main.c -------------------------------------------------------------------------------- /examples/graphics/spriteaffine/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/spriteaffine/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spriteaffine/assets/ball.png -------------------------------------------------------------------------------- /examples/graphics/spriteaffine/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spriteaffine/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/spriteaffine/nitrofiles/sprite/ball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spriteaffine/nitrofiles/sprite/ball.img -------------------------------------------------------------------------------- /examples/graphics/spriteaffine/nitrofiles/sprite/ball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spriteaffine/nitrofiles/sprite/ball.pal -------------------------------------------------------------------------------- /examples/graphics/spriteaffine/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spriteaffine/source/main.c -------------------------------------------------------------------------------- /examples/graphics/spritepal/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/spritepal/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/assets/ball.png -------------------------------------------------------------------------------- /examples/graphics/spritepal/assets/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/assets/bg2.png -------------------------------------------------------------------------------- /examples/graphics/spritepal/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/assets/bg3.png -------------------------------------------------------------------------------- /examples/graphics/spritepal/assets/character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/assets/character.png -------------------------------------------------------------------------------- /examples/graphics/spritepal/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/spritepal/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/assets/nfl.png -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/bg/bg2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/bg/bg2.img -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/bg/bg2.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/bg/bg2.map -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/bg/bg2.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/bg/bg2.pal -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/bg/bg3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/bg/bg3.img -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/bg/bg3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/bg/bg3.map -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/bg/bg3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/bg/bg3.pal -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/sprite/ball.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/sprite/ball.img -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/sprite/ball.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/sprite/ball.pal -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/sprite/character.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/sprite/character.img -------------------------------------------------------------------------------- /examples/graphics/spritepal/nitrofiles/sprite/character.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/nitrofiles/sprite/character.pal -------------------------------------------------------------------------------- /examples/graphics/spritepal/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/spritepal/source/main.c -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/16x16.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/16x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/16x32.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/16x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/16x8.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/32x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/32x16.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/32x32.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/32x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/32x64.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/32x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/32x8.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/64x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/64x32.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/64x64.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/8x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/8x16.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/8x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/8x32.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/8x8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/8x8.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/assets/white_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/assets/white_bg.png -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/bg/white_bg.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/bg/white_bg.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/bg/white_bg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/bg/white_bg.map -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/bg/white_bg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/bg/white_bg.pal -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/16x16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/16x16.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/16x32.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/16x32.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/16x8.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/16x8.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/32x16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/32x16.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/32x32.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/32x32.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/32x64.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/32x64.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/32x8.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/32x8.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/64x32.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/64x32.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/64x64.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/64x64.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/64x64.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/64x64.pal -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/8x16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/8x16.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/8x32.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/8x32.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/nitrofiles/sprite/8x8.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/nitrofiles/sprite/8x8.img -------------------------------------------------------------------------------- /examples/graphics/sprites_all_sizes/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/sprites_all_sizes/source/main.c -------------------------------------------------------------------------------- /examples/graphics/tilechange/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/tilechange/assets/colmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/assets/colmap.png -------------------------------------------------------------------------------- /examples/graphics/tilechange/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/tilechange/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/assets/default.png -------------------------------------------------------------------------------- /examples/graphics/tilechange/assets/layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/assets/layer3.png -------------------------------------------------------------------------------- /examples/graphics/tilechange/assets/pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/assets/pointer.png -------------------------------------------------------------------------------- /examples/graphics/tilechange/nitrofiles/bg/colmap.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/nitrofiles/bg/colmap.img -------------------------------------------------------------------------------- /examples/graphics/tilechange/nitrofiles/bg/colmap.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/nitrofiles/bg/colmap.map -------------------------------------------------------------------------------- /examples/graphics/tilechange/nitrofiles/bg/colmap.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/nitrofiles/bg/colmap.pal -------------------------------------------------------------------------------- /examples/graphics/tilechange/nitrofiles/bg/layer3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/nitrofiles/bg/layer3.img -------------------------------------------------------------------------------- /examples/graphics/tilechange/nitrofiles/bg/layer3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/nitrofiles/bg/layer3.map -------------------------------------------------------------------------------- /examples/graphics/tilechange/nitrofiles/bg/layer3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/nitrofiles/bg/layer3.pal -------------------------------------------------------------------------------- /examples/graphics/tilechange/nitrofiles/fnt/default.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/nitrofiles/fnt/default.img -------------------------------------------------------------------------------- /examples/graphics/tilechange/nitrofiles/fnt/default.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/nitrofiles/fnt/default.pal -------------------------------------------------------------------------------- /examples/graphics/tilechange/nitrofiles/sprite/pointer.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/nitrofiles/sprite/pointer.img -------------------------------------------------------------------------------- /examples/graphics/tilechange/nitrofiles/sprite/pointer.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/nitrofiles/sprite/pointer.pal -------------------------------------------------------------------------------- /examples/graphics/tilechange/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tilechange/source/main.c -------------------------------------------------------------------------------- /examples/graphics/tileflip/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/graphics/tileflip/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tileflip/assets/convert.sh -------------------------------------------------------------------------------- /examples/graphics/tileflip/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tileflip/assets/nfl.png -------------------------------------------------------------------------------- /examples/graphics/tileflip/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tileflip/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/graphics/tileflip/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tileflip/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/graphics/tileflip/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tileflip/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/graphics/tileflip/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/graphics/tileflip/source/main.c -------------------------------------------------------------------------------- /examples/media/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/media/Makefile -------------------------------------------------------------------------------- /examples/media/bmpload/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/media/bmpload/nitrofiles/bmp/bmp16bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/media/bmpload/nitrofiles/bmp/bmp16bits.bmp -------------------------------------------------------------------------------- /examples/media/bmpload/nitrofiles/bmp/bmp24bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/media/bmpload/nitrofiles/bmp/bmp24bits.bmp -------------------------------------------------------------------------------- /examples/media/bmpload/nitrofiles/bmp/bmp8bits.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/media/bmpload/nitrofiles/bmp/bmp8bits.bmp -------------------------------------------------------------------------------- /examples/media/bmpload/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/media/bmpload/source/main.c -------------------------------------------------------------------------------- /examples/media/bmpscroll/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/media/bmpscroll/nitrofiles/bmp/lostend.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/media/bmpscroll/nitrofiles/bmp/lostend.bmp -------------------------------------------------------------------------------- /examples/media/bmpscroll/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/media/bmpscroll/source/main.c -------------------------------------------------------------------------------- /examples/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/misc/Makefile -------------------------------------------------------------------------------- /examples/misc/language/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/misc/language/nitrofiles/delete.me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/misc/language/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/misc/language/source/main.c -------------------------------------------------------------------------------- /examples/sound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/Makefile -------------------------------------------------------------------------------- /examples/sound/rawsfx/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/sound/rawsfx/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/rawsfx/assets/convert.sh -------------------------------------------------------------------------------- /examples/sound/rawsfx/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/rawsfx/assets/default.png -------------------------------------------------------------------------------- /examples/sound/rawsfx/assets/layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/rawsfx/assets/layer3.png -------------------------------------------------------------------------------- /examples/sound/rawsfx/nitrofiles/bg/layer3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/rawsfx/nitrofiles/bg/layer3.img -------------------------------------------------------------------------------- /examples/sound/rawsfx/nitrofiles/bg/layer3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/rawsfx/nitrofiles/bg/layer3.map -------------------------------------------------------------------------------- /examples/sound/rawsfx/nitrofiles/bg/layer3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/rawsfx/nitrofiles/bg/layer3.pal -------------------------------------------------------------------------------- /examples/sound/rawsfx/nitrofiles/fnt/default.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/rawsfx/nitrofiles/fnt/default.img -------------------------------------------------------------------------------- /examples/sound/rawsfx/nitrofiles/fnt/default.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/rawsfx/nitrofiles/fnt/default.pal -------------------------------------------------------------------------------- /examples/sound/rawsfx/nitrofiles/sfx/music.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/rawsfx/nitrofiles/sfx/music.raw -------------------------------------------------------------------------------- /examples/sound/rawsfx/nitrofiles/sfx/sample.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/rawsfx/nitrofiles/sfx/sample.raw -------------------------------------------------------------------------------- /examples/sound/rawsfx/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/sound/rawsfx/source/main.c -------------------------------------------------------------------------------- /examples/text/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/Makefile -------------------------------------------------------------------------------- /examples/text/text16/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/text/text16/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/text16/assets/convert.sh -------------------------------------------------------------------------------- /examples/text/text16/assets/font16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/text16/assets/font16.png -------------------------------------------------------------------------------- /examples/text/text16/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/text16/assets/nfl.png -------------------------------------------------------------------------------- /examples/text/text16/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/text16/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/text/text16/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/text16/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/text/text16/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/text16/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/text/text16/nitrofiles/fnt/font16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/text16/nitrofiles/fnt/font16.img -------------------------------------------------------------------------------- /examples/text/text16/nitrofiles/fnt/font16.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/text16/nitrofiles/fnt/font16.pal -------------------------------------------------------------------------------- /examples/text/text16/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/text16/source/main.c -------------------------------------------------------------------------------- /examples/text/textcolor/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/text/textcolor/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textcolor/assets/convert.sh -------------------------------------------------------------------------------- /examples/text/textcolor/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textcolor/assets/default.png -------------------------------------------------------------------------------- /examples/text/textcolor/assets/nfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textcolor/assets/nfl.png -------------------------------------------------------------------------------- /examples/text/textcolor/nitrofiles/bg/nfl.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textcolor/nitrofiles/bg/nfl.img -------------------------------------------------------------------------------- /examples/text/textcolor/nitrofiles/bg/nfl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textcolor/nitrofiles/bg/nfl.map -------------------------------------------------------------------------------- /examples/text/textcolor/nitrofiles/bg/nfl.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textcolor/nitrofiles/bg/nfl.pal -------------------------------------------------------------------------------- /examples/text/textcolor/nitrofiles/fnt/default.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textcolor/nitrofiles/fnt/default.img -------------------------------------------------------------------------------- /examples/text/textcolor/nitrofiles/fnt/default.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textcolor/nitrofiles/fnt/default.pal -------------------------------------------------------------------------------- /examples/text/textcolor/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textcolor/source/main.c -------------------------------------------------------------------------------- /examples/text/textdemo/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/text/textdemo/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo/assets/convert.sh -------------------------------------------------------------------------------- /examples/text/textdemo/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo/assets/default.png -------------------------------------------------------------------------------- /examples/text/textdemo/assets/layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo/assets/layer3.png -------------------------------------------------------------------------------- /examples/text/textdemo/nitrofiles/bg/layer3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo/nitrofiles/bg/layer3.img -------------------------------------------------------------------------------- /examples/text/textdemo/nitrofiles/bg/layer3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo/nitrofiles/bg/layer3.map -------------------------------------------------------------------------------- /examples/text/textdemo/nitrofiles/bg/layer3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo/nitrofiles/bg/layer3.pal -------------------------------------------------------------------------------- /examples/text/textdemo/nitrofiles/fnt/default.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo/nitrofiles/fnt/default.img -------------------------------------------------------------------------------- /examples/text/textdemo/nitrofiles/fnt/default.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo/nitrofiles/fnt/default.pal -------------------------------------------------------------------------------- /examples/text/textdemo/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo/source/main.c -------------------------------------------------------------------------------- /examples/text/textdemo16/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/text/textdemo16/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo16/assets/convert.sh -------------------------------------------------------------------------------- /examples/text/textdemo16/assets/font16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo16/assets/font16.png -------------------------------------------------------------------------------- /examples/text/textdemo16/assets/layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo16/assets/layer3.png -------------------------------------------------------------------------------- /examples/text/textdemo16/nitrofiles/bg/layer3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo16/nitrofiles/bg/layer3.img -------------------------------------------------------------------------------- /examples/text/textdemo16/nitrofiles/bg/layer3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo16/nitrofiles/bg/layer3.map -------------------------------------------------------------------------------- /examples/text/textdemo16/nitrofiles/bg/layer3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo16/nitrofiles/bg/layer3.pal -------------------------------------------------------------------------------- /examples/text/textdemo16/nitrofiles/fnt/font16.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo16/nitrofiles/fnt/font16.img -------------------------------------------------------------------------------- /examples/text/textdemo16/nitrofiles/fnt/font16.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo16/nitrofiles/fnt/font16.pal -------------------------------------------------------------------------------- /examples/text/textdemo16/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textdemo16/source/main.c -------------------------------------------------------------------------------- /examples/text/textscroll/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/text/textscroll/assets/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textscroll/assets/convert.sh -------------------------------------------------------------------------------- /examples/text/textscroll/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textscroll/assets/default.png -------------------------------------------------------------------------------- /examples/text/textscroll/assets/layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textscroll/assets/layer3.png -------------------------------------------------------------------------------- /examples/text/textscroll/nitrofiles/bg/layer3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textscroll/nitrofiles/bg/layer3.img -------------------------------------------------------------------------------- /examples/text/textscroll/nitrofiles/bg/layer3.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textscroll/nitrofiles/bg/layer3.map -------------------------------------------------------------------------------- /examples/text/textscroll/nitrofiles/bg/layer3.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textscroll/nitrofiles/bg/layer3.pal -------------------------------------------------------------------------------- /examples/text/textscroll/nitrofiles/fnt/default.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textscroll/nitrofiles/fnt/default.img -------------------------------------------------------------------------------- /examples/text/textscroll/nitrofiles/fnt/default.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textscroll/nitrofiles/fnt/default.pal -------------------------------------------------------------------------------- /examples/text/textscroll/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/text/textscroll/source/main.c -------------------------------------------------------------------------------- /examples/wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/wifi/Makefile -------------------------------------------------------------------------------- /examples/wifi/udptalk/Makefile: -------------------------------------------------------------------------------- 1 | include ../../Makefile.example 2 | -------------------------------------------------------------------------------- /examples/wifi/udptalk/nitrofiles/delete.me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/wifi/udptalk/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/examples/wifi/udptalk/source/main.c -------------------------------------------------------------------------------- /include/nf_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_2d.h -------------------------------------------------------------------------------- /include/nf_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_3d.h -------------------------------------------------------------------------------- /include/nf_affinebg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_affinebg.h -------------------------------------------------------------------------------- /include/nf_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_basic.h -------------------------------------------------------------------------------- /include/nf_bitmapbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_bitmapbg.h -------------------------------------------------------------------------------- /include/nf_collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_collision.h -------------------------------------------------------------------------------- /include/nf_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_lib.h -------------------------------------------------------------------------------- /include/nf_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_media.h -------------------------------------------------------------------------------- /include/nf_mixedbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_mixedbg.h -------------------------------------------------------------------------------- /include/nf_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_sound.h -------------------------------------------------------------------------------- /include/nf_sprite256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_sprite256.h -------------------------------------------------------------------------------- /include/nf_sprite3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_sprite3d.h -------------------------------------------------------------------------------- /include/nf_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_text.h -------------------------------------------------------------------------------- /include/nf_text16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_text16.h -------------------------------------------------------------------------------- /include/nf_tiledbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_tiledbg.h -------------------------------------------------------------------------------- /include/nf_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/include/nf_wifi.h -------------------------------------------------------------------------------- /licenses/cc-by-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/licenses/cc-by-4.0.txt -------------------------------------------------------------------------------- /licenses/cc0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/licenses/cc0-1.0.txt -------------------------------------------------------------------------------- /licenses/mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/licenses/mit.txt -------------------------------------------------------------------------------- /licenses/unsplash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/licenses/unsplash.txt -------------------------------------------------------------------------------- /readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/readme.rst -------------------------------------------------------------------------------- /source/nf_2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_2d.c -------------------------------------------------------------------------------- /source/nf_3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_3d.c -------------------------------------------------------------------------------- /source/nf_affinebg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_affinebg.c -------------------------------------------------------------------------------- /source/nf_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_basic.c -------------------------------------------------------------------------------- /source/nf_bitmapbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_bitmapbg.c -------------------------------------------------------------------------------- /source/nf_collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_collision.c -------------------------------------------------------------------------------- /source/nf_media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_media.c -------------------------------------------------------------------------------- /source/nf_mixedbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_mixedbg.c -------------------------------------------------------------------------------- /source/nf_sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_sound.c -------------------------------------------------------------------------------- /source/nf_sprite256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_sprite256.c -------------------------------------------------------------------------------- /source/nf_sprite3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_sprite3d.c -------------------------------------------------------------------------------- /source/nf_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_text.c -------------------------------------------------------------------------------- /source/nf_text16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_text16.c -------------------------------------------------------------------------------- /source/nf_tiledbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_tiledbg.c -------------------------------------------------------------------------------- /source/nf_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/source/nf_wifi.c -------------------------------------------------------------------------------- /template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/template/Makefile -------------------------------------------------------------------------------- /template/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/template/icon.bmp -------------------------------------------------------------------------------- /template/nitrofiles/delete.me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knightfox75/nds_nflib/HEAD/template/source/main.c --------------------------------------------------------------------------------