mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-12 05:28:43 -04:00
a00fb1c05c
Roughly inspired by what I've learned from my work on Space Station 14, without some of the unnecessary cruft and complexity. Implementation is relatively simple once I figured out all the template order shenanigans.
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
|