mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 23:01:23 -04:00
21 lines
484 B
C++
21 lines
484 B
C++
#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
|