diff options
author | rtk0c <[email protected]> | 2022-04-25 20:22:07 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-25 20:22:07 -0700 |
commit | 855da86feae1a5cc14dc2d486ccf115f484dbc2e (patch) | |
tree | 8284c6a6bdfb1a919eb1a22f466f4180a329c7f3 /source/AppConfig.hpp | |
parent | d78a55de5003dbb040f1d1c369409e63a2c806d8 (diff) |
Changeset: 16 Initial work on rendering sprites to screen
Diffstat (limited to 'source/AppConfig.hpp')
-rw-r--r-- | source/AppConfig.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/AppConfig.hpp b/source/AppConfig.hpp index 8d69fad..b6c1fab 100644 --- a/source/AppConfig.hpp +++ b/source/AppConfig.hpp @@ -8,6 +8,10 @@ constexpr std::string_view kAppName = "ProjectBrussel"; // Since kAppName is initialized by a C string literal, we know it's null termianted constexpr const char* kAppNameC = kAppName.data(); +inline float mainWidnowWidth; +inline float mainWindowHeight; +inline float mainWindowAspectRatio; + // Duplicate each as path and string so that on non-UTF-8 platforms (e.g. Windows) we can easily do string manipulation on the paths // NOTE: even though non-const, these should not be modified outside of main() inline std::filesystem::path dataDirPath; |