├── .gitignore ├── CMakeLists.txt ├── README.md ├── assets.png ├── readme.txt ├── sce_sys ├── icon0.png └── livearea │ └── contents │ ├── bg.png │ ├── startup.png │ └── template.xml ├── screenshots ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg └── screenshots.gif ├── sounds ├── readme.txt ├── sfx_die.ogg ├── sfx_hit.ogg ├── sfx_point.ogg ├── sfx_swooshing.ogg └── sfx_wing.ogg └── src ├── collision.cpp ├── collision.h ├── core.cpp ├── core.h ├── main.cpp ├── utils.cpp └── utils.h /.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/README.md -------------------------------------------------------------------------------- /assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/assets.png -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | this assets are from original game made by .GEARS -------------------------------------------------------------------------------- /sce_sys/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/sce_sys/icon0.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/sce_sys/livearea/contents/bg.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/sce_sys/livearea/contents/startup.png -------------------------------------------------------------------------------- /sce_sys/livearea/contents/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/sce_sys/livearea/contents/template.xml -------------------------------------------------------------------------------- /screenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/screenshots/1.jpg -------------------------------------------------------------------------------- /screenshots/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/screenshots/2.jpg -------------------------------------------------------------------------------- /screenshots/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/screenshots/3.jpg -------------------------------------------------------------------------------- /screenshots/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/screenshots/4.jpg -------------------------------------------------------------------------------- /screenshots/screenshots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/screenshots/screenshots.gif -------------------------------------------------------------------------------- /sounds/readme.txt: -------------------------------------------------------------------------------- 1 | this sounds are from original game made by .GEARS -------------------------------------------------------------------------------- /sounds/sfx_die.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/sounds/sfx_die.ogg -------------------------------------------------------------------------------- /sounds/sfx_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/sounds/sfx_hit.ogg -------------------------------------------------------------------------------- /sounds/sfx_point.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/sounds/sfx_point.ogg -------------------------------------------------------------------------------- /sounds/sfx_swooshing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/sounds/sfx_swooshing.ogg -------------------------------------------------------------------------------- /sounds/sfx_wing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/sounds/sfx_wing.ogg -------------------------------------------------------------------------------- /src/collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/src/collision.cpp -------------------------------------------------------------------------------- /src/collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/src/collision.h -------------------------------------------------------------------------------- /src/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/src/core.cpp -------------------------------------------------------------------------------- /src/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/src/core.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Creckeryop/Flappy-Bird-Classic-vita/HEAD/src/utils.h --------------------------------------------------------------------------------