├── .gitignore ├── COPYRIGHTS.md ├── LICENSE ├── Makefile ├── README.md ├── icon.bmp ├── nflib ├── include │ ├── nf_2d.h │ ├── nf_3d.h │ ├── nf_affinebg.h │ ├── nf_basic.h │ ├── nf_bitmapbg.h │ ├── nf_colision.h │ ├── nf_defines.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 └── lib │ └── libnflib.a ├── nitrofiles ├── backgrounds │ ├── gamebg.img │ ├── gamebg.map │ ├── gamebg.pal │ ├── rulesbg.img │ ├── rulesbg.map │ ├── rulesbg.pal │ ├── titlebg.img │ ├── titlebg.map │ └── titlebg.pal ├── font │ ├── font.fnt │ └── font.pal ├── sounds │ ├── bettercallsaul.raw │ ├── byewaltuh.raw │ ├── game.raw │ ├── notourjimmy.raw │ ├── preciousjimmy.raw │ └── title.raw └── sprites │ ├── letters │ ├── 1.img │ ├── 2.img │ ├── 3.img │ ├── 4.img │ ├── 5.img │ ├── 6.img │ ├── 7.img │ ├── 8.img │ ├── 9.img │ └── letters.pal │ ├── logo_l.img │ ├── logo_l.pal │ ├── logo_r.img │ ├── logo_r.pal │ ├── saul.img │ └── saul.pal └── source └── main.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .vscode/ 3 | *.nds 4 | *.elf -------------------------------------------------------------------------------- /COPYRIGHTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/COPYRIGHTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/README.md -------------------------------------------------------------------------------- /icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/icon.bmp -------------------------------------------------------------------------------- /nflib/include/nf_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_2d.h -------------------------------------------------------------------------------- /nflib/include/nf_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_3d.h -------------------------------------------------------------------------------- /nflib/include/nf_affinebg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_affinebg.h -------------------------------------------------------------------------------- /nflib/include/nf_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_basic.h -------------------------------------------------------------------------------- /nflib/include/nf_bitmapbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_bitmapbg.h -------------------------------------------------------------------------------- /nflib/include/nf_colision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_colision.h -------------------------------------------------------------------------------- /nflib/include/nf_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_defines.h -------------------------------------------------------------------------------- /nflib/include/nf_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_lib.h -------------------------------------------------------------------------------- /nflib/include/nf_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_media.h -------------------------------------------------------------------------------- /nflib/include/nf_mixedbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_mixedbg.h -------------------------------------------------------------------------------- /nflib/include/nf_sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_sound.h -------------------------------------------------------------------------------- /nflib/include/nf_sprite256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_sprite256.h -------------------------------------------------------------------------------- /nflib/include/nf_sprite3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_sprite3d.h -------------------------------------------------------------------------------- /nflib/include/nf_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_text.h -------------------------------------------------------------------------------- /nflib/include/nf_text16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_text16.h -------------------------------------------------------------------------------- /nflib/include/nf_tiledbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/include/nf_tiledbg.h -------------------------------------------------------------------------------- /nflib/lib/libnflib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nflib/lib/libnflib.a -------------------------------------------------------------------------------- /nitrofiles/backgrounds/gamebg.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/backgrounds/gamebg.img -------------------------------------------------------------------------------- /nitrofiles/backgrounds/gamebg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/backgrounds/gamebg.map -------------------------------------------------------------------------------- /nitrofiles/backgrounds/gamebg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/backgrounds/gamebg.pal -------------------------------------------------------------------------------- /nitrofiles/backgrounds/rulesbg.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/backgrounds/rulesbg.img -------------------------------------------------------------------------------- /nitrofiles/backgrounds/rulesbg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/backgrounds/rulesbg.map -------------------------------------------------------------------------------- /nitrofiles/backgrounds/rulesbg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/backgrounds/rulesbg.pal -------------------------------------------------------------------------------- /nitrofiles/backgrounds/titlebg.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/backgrounds/titlebg.img -------------------------------------------------------------------------------- /nitrofiles/backgrounds/titlebg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/backgrounds/titlebg.map -------------------------------------------------------------------------------- /nitrofiles/backgrounds/titlebg.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/backgrounds/titlebg.pal -------------------------------------------------------------------------------- /nitrofiles/font/font.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/font/font.fnt -------------------------------------------------------------------------------- /nitrofiles/font/font.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/font/font.pal -------------------------------------------------------------------------------- /nitrofiles/sounds/bettercallsaul.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sounds/bettercallsaul.raw -------------------------------------------------------------------------------- /nitrofiles/sounds/byewaltuh.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sounds/byewaltuh.raw -------------------------------------------------------------------------------- /nitrofiles/sounds/game.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sounds/game.raw -------------------------------------------------------------------------------- /nitrofiles/sounds/notourjimmy.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sounds/notourjimmy.raw -------------------------------------------------------------------------------- /nitrofiles/sounds/preciousjimmy.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sounds/preciousjimmy.raw -------------------------------------------------------------------------------- /nitrofiles/sounds/title.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sounds/title.raw -------------------------------------------------------------------------------- /nitrofiles/sprites/letters/1.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/letters/1.img -------------------------------------------------------------------------------- /nitrofiles/sprites/letters/2.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/letters/2.img -------------------------------------------------------------------------------- /nitrofiles/sprites/letters/3.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/letters/3.img -------------------------------------------------------------------------------- /nitrofiles/sprites/letters/4.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/letters/4.img -------------------------------------------------------------------------------- /nitrofiles/sprites/letters/5.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/letters/5.img -------------------------------------------------------------------------------- /nitrofiles/sprites/letters/6.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/letters/6.img -------------------------------------------------------------------------------- /nitrofiles/sprites/letters/7.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/letters/7.img -------------------------------------------------------------------------------- /nitrofiles/sprites/letters/8.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/letters/8.img -------------------------------------------------------------------------------- /nitrofiles/sprites/letters/9.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/letters/9.img -------------------------------------------------------------------------------- /nitrofiles/sprites/letters/letters.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/letters/letters.pal -------------------------------------------------------------------------------- /nitrofiles/sprites/logo_l.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/logo_l.img -------------------------------------------------------------------------------- /nitrofiles/sprites/logo_l.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/logo_l.pal -------------------------------------------------------------------------------- /nitrofiles/sprites/logo_r.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/logo_r.img -------------------------------------------------------------------------------- /nitrofiles/sprites/logo_r.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/logo_r.pal -------------------------------------------------------------------------------- /nitrofiles/sprites/saul.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/saul.img -------------------------------------------------------------------------------- /nitrofiles/sprites/saul.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/nitrofiles/sprites/saul.pal -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiIIiam278/BCSDS/HEAD/source/main.cpp --------------------------------------------------------------------------------