#ifndef DUSK_APPNAME_HPP #define DUSK_APPNAME_HPP namespace dusk { /** * \brief The internal application name for the game. * * This gets used for file paths and such, and cannot be changed! */ constexpr auto AppName = "Dusk"; /** * \brief The internal organization name for the game. * * This gets used for file paths and such, and cannot be changed! */ constexpr auto OrgName = "TwilitRealm"; } #endif // DUSK_APPNAME_HPP