diff options
| author | talha <talha@talhaamir.xyz> | 2025-11-27 13:18:57 +0500 |
|---|---|---|
| committer | talha <talha@talhaamir.xyz> | 2025-11-27 13:18:57 +0500 |
| commit | 0b3d69976819219e71350b6a988d1704fd5f0746 (patch) | |
| tree | 3511564cb2cb3b10697dc997260479a14540d706 /source/fswatcher/fswatcher.cpp | |
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.cpp | 9 |
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 |
