1234567891011121314151617181920 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2022-06-29
- * Changed: 2023-02-04
- *
- * */
- #ifndef LS_STD_DYNAMIC_GOAL_HPP
- #define LS_STD_DYNAMIC_GOAL_HPP
- #if defined(_WIN32) && defined(_MSC_VER)
- #include <ls-std/os/windows/msvc-dll-definitions.hpp>
- #endif
- #if defined(unix) || defined(__APPLE__) || defined(_WIN32) && defined(__GNUC__)
- #include <ls-std/os/unix/unix-shared-object-definitions.hpp>
- #endif
- #endif
|