1234567891011121314151617181920212223 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2021-05-02
- * Changed: 2022-08-09
- *
- * */
- #ifndef LS_STD_LIBRARY_VERSION_HPP
- #define LS_STD_LIBRARY_VERSION_HPP
- #include <string>
- namespace ls::std::core
- {
- static ::std::string getVersion()
- {
- return "2022.3.0";
- }
- }
- #endif
|