aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Config.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-28 13:01:07 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-28 13:01:14 +0100
commit63bce3dd21c82e2b4e45c07934d5a26684cdaa93 (patch)
treea46da0cb575fa21add7b07f2784c7889e4bc2771 /src/crepe/api/Config.h
parent2a2a3391ff0b449602825c3182af33c2ff52abc0 (diff)
parent85aa57e33d493502b05984ce44db6c68f627a6f2 (diff)
merge `master`
Diffstat (limited to 'src/crepe/api/Config.h')
-rw-r--r--src/crepe/api/Config.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/crepe/api/Config.h b/src/crepe/api/Config.h
index 0c9d116..225e9b9 100644
--- a/src/crepe/api/Config.h
+++ b/src/crepe/api/Config.h
@@ -1,6 +1,8 @@
#pragma once
#include "../util/Log.h"
+#include "types.h"
+#include <string>
namespace crepe {
@@ -62,6 +64,14 @@ public:
double gravity = 1;
} physics;
+ //! default window settings
+ struct {
+ //TODO make this constexpr because this will never change
+ ivec2 default_size = {1080, 720};
+ std::string window_title = "Jetpack joyride clone";
+
+ } window_settings;
+
//! Asset loading options
struct {
/**