mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 06:50:43 -04:00
79b1f4ab4d
* Customizable data directory & migration * Add file/dir rename fast-path * Write data_location.json to base path on Windows; fix UTF-8 custom paths * Build fix * Another build fix * Android data directory selection * Fix CMake target ref
26 lines
595 B
C++
26 lines
595 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 = "Dusklight";
|
|
|
|
/**
|
|
* Previous AppName to migrate data from.
|
|
*/
|
|
constexpr auto LegacyAppName = "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
|