├── .gitignore ├── Makefile ├── README.md ├── demo.mp4 └── src ├── hot.h ├── main.c └── render.c /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist 3 | 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cj1128/hot-reload-c/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cj1128/hot-reload-c/HEAD/README.md -------------------------------------------------------------------------------- /demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cj1128/hot-reload-c/HEAD/demo.mp4 -------------------------------------------------------------------------------- /src/hot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cj1128/hot-reload-c/HEAD/src/hot.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cj1128/hot-reload-c/HEAD/src/main.c -------------------------------------------------------------------------------- /src/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cj1128/hot-reload-c/HEAD/src/render.c --------------------------------------------------------------------------------