1234567891011121314151617181920 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2022-11-06
- * Changed: 2022-11-06
- *
- * */
- #ifndef LS_MATH_DYNAMIC_GOAL_HPP
- #define LS_MATH_DYNAMIC_GOAL_HPP
- #if defined(_WIN32) && defined(_MSC_VER)
- #include <ls_math/os/windows/msvc_dll_definitions.hpp>
- #endif
- #if defined(unix) || defined(__APPLE__) || defined(_WIN32) && defined(__GNUC__)
- #include <ls_math/os/unix/unix_so_definitions.hpp>
- #endif
- #endif
|