├── .gitignore ├── README.md ├── preview.gif └── src ├── Animator.cpp ├── Animator.h ├── Bullet.cpp ├── Bullet.h ├── Controller.cpp ├── Controller.h ├── Enemy.cpp ├── Enemy.h ├── EnemyAnimation.h ├── Game.cpp ├── Game.h ├── Level.cpp ├── Level.h ├── Makefile ├── Player.cpp ├── Player.h ├── PlayerAnimation.h ├── Renderer.cpp ├── Renderer.h ├── Sprite.cpp ├── Sprite.h ├── StartScreen.h ├── Time.cpp ├── Time.h ├── main.cpp └── romdisk └── Sprite ├── Enemy └── GoopeSheet.png ├── Level ├── bg.png └── fg.png ├── Player └── playerSheet.png ├── StartScreen.png └── shot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/README.md -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/preview.gif -------------------------------------------------------------------------------- /src/Animator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Animator.cpp -------------------------------------------------------------------------------- /src/Animator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Animator.h -------------------------------------------------------------------------------- /src/Bullet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Bullet.cpp -------------------------------------------------------------------------------- /src/Bullet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Bullet.h -------------------------------------------------------------------------------- /src/Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Controller.cpp -------------------------------------------------------------------------------- /src/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Controller.h -------------------------------------------------------------------------------- /src/Enemy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Enemy.cpp -------------------------------------------------------------------------------- /src/Enemy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Enemy.h -------------------------------------------------------------------------------- /src/EnemyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/EnemyAnimation.h -------------------------------------------------------------------------------- /src/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Game.cpp -------------------------------------------------------------------------------- /src/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Game.h -------------------------------------------------------------------------------- /src/Level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Level.cpp -------------------------------------------------------------------------------- /src/Level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Level.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Player.cpp -------------------------------------------------------------------------------- /src/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Player.h -------------------------------------------------------------------------------- /src/PlayerAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/PlayerAnimation.h -------------------------------------------------------------------------------- /src/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Renderer.cpp -------------------------------------------------------------------------------- /src/Renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Renderer.h -------------------------------------------------------------------------------- /src/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Sprite.cpp -------------------------------------------------------------------------------- /src/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Sprite.h -------------------------------------------------------------------------------- /src/StartScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/StartScreen.h -------------------------------------------------------------------------------- /src/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Time.cpp -------------------------------------------------------------------------------- /src/Time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/Time.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/romdisk/Sprite/Enemy/GoopeSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/romdisk/Sprite/Enemy/GoopeSheet.png -------------------------------------------------------------------------------- /src/romdisk/Sprite/Level/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/romdisk/Sprite/Level/bg.png -------------------------------------------------------------------------------- /src/romdisk/Sprite/Level/fg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/romdisk/Sprite/Level/fg.png -------------------------------------------------------------------------------- /src/romdisk/Sprite/Player/playerSheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/romdisk/Sprite/Player/playerSheet.png -------------------------------------------------------------------------------- /src/romdisk/Sprite/StartScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/romdisk/Sprite/StartScreen.png -------------------------------------------------------------------------------- /src/romdisk/Sprite/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Aionmagan/Cuphead_Dreamcast/HEAD/src/romdisk/Sprite/shot.png --------------------------------------------------------------------------------