From 0b3d69976819219e71350b6a988d1704fd5f0746 Mon Sep 17 00:00:00 2001 From: talha Date: Thu, 27 Nov 2025 13:18:57 +0500 Subject: Added files to git. Current State: - hot reloading - math library (calcify) - triangle rendering (unbatched) - orthographic projection (no camera) - layer isolation setup (platform vs game) --- source/fswatcher/fswatcher.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 source/fswatcher/fswatcher.cpp (limited to 'source/fswatcher/fswatcher.cpp') diff --git a/source/fswatcher/fswatcher.cpp b/source/fswatcher/fswatcher.cpp new file mode 100644 index 0000000..922cc8d --- /dev/null +++ b/source/fswatcher/fswatcher.cpp @@ -0,0 +1,9 @@ +#if defined( __linux__ ) +# include "fswatcher_linux.cpp" +#elif defined( _WIN32 ) +# include "fswatcher_windows.cpp" +#elif defined( __OSX__ ) +# include "fswatcher_osx.cpp" +#else +# error "Unsupported platform" +#endif -- cgit v1.2.3