summaryrefslogtreecommitdiff
path: root/source/fswatcher/fswatcher.cpp
diff options
context:
space:
mode:
authortalha <talha@talhaamir.xyz>2025-11-27 13:18:57 +0500
committertalha <talha@talhaamir.xyz>2025-11-27 13:18:57 +0500
commit0b3d69976819219e71350b6a988d1704fd5f0746 (patch)
tree3511564cb2cb3b10697dc997260479a14540d706 /source/fswatcher/fswatcher.cpp
Added files to git.HEADmain
Current State: - hot reloading - math library (calcify) - triangle rendering (unbatched) - orthographic projection (no camera) - layer isolation setup (platform vs game)
Diffstat (limited to 'source/fswatcher/fswatcher.cpp')
-rw-r--r--source/fswatcher/fswatcher.cpp9
1 files changed, 9 insertions, 0 deletions
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