/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2021-05-02 * Changed: 2021-09-24 * * */ #ifndef LS_STD_LIBRARY_VERSION_HPP #define LS_STD_LIBRARY_VERSION_HPP #include namespace ls_std { static std::string getVersion() { return "2021.2.0"; } } #endif