├── Makefile ├── README.md ├── animations.c ├── animations.h ├── border.c ├── border.h ├── camagotchi.c ├── camagotchi.h ├── extras.c ├── extras.h ├── main.c ├── modes.c └── modes.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/README.md -------------------------------------------------------------------------------- /animations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/animations.c -------------------------------------------------------------------------------- /animations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/animations.h -------------------------------------------------------------------------------- /border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/border.c -------------------------------------------------------------------------------- /border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/border.h -------------------------------------------------------------------------------- /camagotchi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/camagotchi.c -------------------------------------------------------------------------------- /camagotchi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/camagotchi.h -------------------------------------------------------------------------------- /extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/extras.c -------------------------------------------------------------------------------- /extras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/extras.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/main.c -------------------------------------------------------------------------------- /modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/modes.c -------------------------------------------------------------------------------- /modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdegrand/Camagotchi/HEAD/modes.h --------------------------------------------------------------------------------