dynamic_goal.hpp 517 B

1234567891011121314151617181920
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2022-06-29
  6. * Changed: 2022-07-17
  7. *
  8. * */
  9. #ifndef LS_STD_DYNAMIC_GOAL_HPP
  10. #define LS_STD_DYNAMIC_GOAL_HPP
  11. #if defined(_WIN32) && defined(_MSC_VER)
  12. #include <ls_std/os/windows/msvc_dll_definitions.hpp>
  13. #endif
  14. #if defined(unix) || defined(__APPLE__) || defined(_WIN32) && defined(__GNUC__)
  15. #include <ls_std/os/unix/unix_so_definitions.hpp>
  16. #endif
  17. #endif